diff options
author | jbeich <jbeich@FreeBSD.org> | 2016-04-13 18:36:15 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2016-04-13 18:36:15 +0800 |
commit | 883b888942cffae3476d05cb91b882636a1e7977 (patch) | |
tree | 4e9607083456960d04d51c761a85448e0510cb47 /irc | |
parent | bc50e8ce9a6ac464a36af1dd8f90bc99a219adda (diff) | |
download | freebsd-ports-gnome-883b888942cffae3476d05cb91b882636a1e7977.tar.gz freebsd-ports-gnome-883b888942cffae3476d05cb91b882636a1e7977.tar.zst freebsd-ports-gnome-883b888942cffae3476d05cb91b882636a1e7977.zip |
Consistently prefer ${CONFIGURE_CMD} over ./${CONFIGURE_SCRIPT}
This also fixes SET_LATE_CONFIGURE_ARGS with custom CONFIGURE_CMD.
PR: 208294
Exp-run by: antoine
Approved by: portmgr (antoine), perl (mat)
Differential Revision: https://reviews.freebsd.org/D4158
Diffstat (limited to 'irc')
-rw-r--r-- | irc/inspircd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/irc/inspircd/Makefile b/irc/inspircd/Makefile index f441afdc9be9..6138030af23e 100644 --- a/irc/inspircd/Makefile +++ b/irc/inspircd/Makefile @@ -139,7 +139,7 @@ PLIST_SUB+= POSIX="@comment " pre-configure: @if [ ${EXTRAS} ]; then \ - cd ${WRKSRC} && ./${CONFIGURE_SCRIPT} --enable-extras=${EXTRAS} ; \ + cd ${WRKSRC} && ${CONFIGURE_CMD} --enable-extras=${EXTRAS} ; \ fi post-patch: |