diff options
author | bapt <bapt@FreeBSD.org> | 2013-06-10 14:42:37 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-06-10 14:42:37 +0800 |
commit | 49e13b25a808b1d2e8bdcaf5afe6b2a18a139f4e (patch) | |
tree | a6b92236c3971f9dc2192d29629504b8c0103773 | |
parent | 2cbecd6759692be44682c26ea1c73683af717366 (diff) | |
download | freebsd-ports-gnome-49e13b25a808b1d2e8bdcaf5afe6b2a18a139f4e.tar.gz freebsd-ports-gnome-49e13b25a808b1d2e8bdcaf5afe6b2a18a139f4e.tar.zst freebsd-ports-gnome-49e13b25a808b1d2e8bdcaf5afe6b2a18a139f4e.zip |
Testing COMPLETE_OPTIONS_LIST is enought to determine if there is options to print
-rw-r--r-- | Mk/bsd.port.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 57daf9f9ec84..a7285b836858 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -6179,7 +6179,7 @@ MULTI_EOL= ": you have to choose at least one of them" SINGLE_EOL= ": you have to select exactly one of them" RADIO_EOL= ": you can only select none or one of them" showconfig: -.if !empty(ALL_OPTIONS) || !empty(OPTIONS_SINGLE) || !empty(OPTIONS_MULTI) || !empty(OPTIONS_RADIO) || !empty(OPTIONS_GROUP) +.if !empty(COMPLETE_OPTIONS_LIST) @${ECHO_MSG} "===> The following configuration options are available for ${PKGNAME}": .for opt in ${ALL_OPTIONS} . if empty(PORT_OPTIONS:M${opt}) |