diff options
author | adamw <adamw@FreeBSD.org> | 2015-08-29 00:18:32 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2015-08-29 00:18:32 +0800 |
commit | 8b523867922ceeccb221d68c0f155a3bbb953219 (patch) | |
tree | 5ee7bb5f7ece98eb8828062b18abefe9c5dd014b /Mk | |
parent | ba43e6a34ccf7505744f90bcbc402b1e6a413c2f (diff) | |
download | freebsd-ports-gnome-8b523867922ceeccb221d68c0f155a3bbb953219.tar.gz freebsd-ports-gnome-8b523867922ceeccb221d68c0f155a3bbb953219.tar.zst freebsd-ports-gnome-8b523867922ceeccb221d68c0f155a3bbb953219.zip |
Use more precise wording, i.e. "set" and "append" instead of "run."
Approved by: portmgr (mat)
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.options.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Mk/bsd.options.mk b/Mk/bsd.options.mk index bfdf348c1cda..a989ce7abb05 100644 --- a/Mk/bsd.options.mk +++ b/Mk/bsd.options.mk @@ -110,13 +110,13 @@ # ${opt}_USE_OFF= FOO=bar When option is disabled, it will enable # USE_FOO+= bar # -# ${opt}_VARS= FOO=bar When option is enabled, it will run +# ${opt}_VARS= FOO=bar When option is enabled, it will set # FOO= bar -# ${opt}_VARS= FOO+=bar When option is enabled, it will run +# ${opt}_VARS= FOO+=bar When option is enabled, it will append # FOO+= bar -# ${opt}_VARS_OFF= FOO=bar When option is disabled, it will run +# ${opt}_VARS_OFF= FOO=bar When option is disabled, it will set # FOO= bar -# ${opt}_VARS_OFF= FOO+=bar When option is disabled, it will run +# ${opt}_VARS_OFF= FOO+=bar When option is disabled, it will append # FOO+= bar # # For each of: |