diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2017-02-21 16:28:41 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2017-02-21 16:28:41 +0000 |
commit | e8f90a3da6594dfef47fc7eb611315ea271ec0f2 (patch) | |
tree | 9ec4a83b181f7cf1a73c8bd70a1eb6e8ee4c6408 /Mk/bsd.port.mk | |
parent | 27cab1b67b86ca7322d8f9b096aab8d6a4212c96 (diff) | |
download | ports-e8f90a3da6594dfef47fc7eb611315ea271ec0f2.tar.gz ports-e8f90a3da6594dfef47fc7eb611315ea271ec0f2.zip |
Notes
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r-- | Mk/bsd.port.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index fd958063a0ba..d3ffc280d86d 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -4694,7 +4694,11 @@ _check-config: pre-check-config .endfor .for single in ${OPTIONS_WRONG_SINGLE} @${ECHO_MSG} "====> You must select one and only one option from the ${single} single" +.if defined(OPTIONS_WRONG_SINGLE_${single}) @${ECHO_MSG} "=====> Only one of these must be defined: ${OPTIONS_WRONG_SINGLE_${single}}" +.else + @${ECHO_MSG} "=====> No option was selected (and one must be)" +.endif .endfor .for radio in ${OPTIONS_WRONG_RADIO} @${ECHO_MSG} "====> You cannot select multiple options from the ${radio} radio" |