diff options
author | danfe <danfe@FreeBSD.org> | 2005-04-26 05:57:26 +0000 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2005-04-26 05:57:26 +0000 |
commit | d8a167ff92cc9cdfdd3095ed7a148d9dbfd1e85a (patch) | |
tree | 367d247315fc8a5070590c12781791f34ce55719 /irc/thales | |
parent | 6a1f3e8521130f0c182693d05bacd3c1b0c5963f (diff) | |
download | FreeBSD-ports-d8a167ff92cc9cdfdd3095ed7a148d9dbfd1e85a.zip FreeBSD-ports-d8a167ff92cc9cdfdd3095ed7a148d9dbfd1e85a.tar.gz |
- Put period at the end of sentence
- Explain a case of assignment logic for future reference
Make magic lessons by: fjoe
Diffstat (limited to 'irc/thales')
-rw-r--r-- | irc/thales/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/irc/thales/Makefile b/irc/thales/Makefile index 74c5913..a990e5d 100644 --- a/irc/thales/Makefile +++ b/irc/thales/Makefile @@ -20,7 +20,7 @@ USE_MYSQL= yes USE_REINPLACE= yes # Currently, not all supported IRCDs are handled here, only the ones -# I could find corresponding RUN_DEPENDS in our Ports Collection +# I could find corresponding RUN_DEPENDS in our Ports Collection. .if defined(WITH_IRCD) && ${WITH_IRCD} == hybrid RUN_DEPENDS= ${LOCALBASE}/bin/ircd:${PORTSDIR}/irc/ircd-hybrid IS_INTERACTIVE= yes @@ -32,6 +32,8 @@ WITH_IRCD= unreal RUN_DEPENDS= ${LOCALBASE}/Unreal/ircd:${PORTSDIR}/irc/unreal .endif +# ``Assign with expansion'' is needed here, otherwise we cannot override +# WITH_IRCD value supplied as make(1) argument (which can be bogus). CONFIGURE_ARGS:= --with-ircd=${WITH_IRCD} .if defined(WITHOUT_MODES) |