summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authorjlam <jlam>2005-04-28 23:42:48 +0000
committerjlam <jlam>2005-04-28 23:42:48 +0000
commit27cd57515e0e2648125eb0ac9e179a6c0a9b329a (patch)
tree4ff55f62620e1307dcdef0fc6c8c8dbce7b53cf7 /x11
parentfac3458b9acee9f301819ac42bc7085405827760 (diff)
downloadpkgsrc-27cd57515e0e2648125eb0ac9e179a6c0a9b329a.tar.gz
Use :sh instead of != to defer execution of ${PERL} until the configure
phase. This avoids needing ${PERL} in the top-level make.
Diffstat (limited to 'x11')
-rw-r--r--x11/xscreensaver/Makefile.common11
1 files changed, 6 insertions, 5 deletions
diff --git a/x11/xscreensaver/Makefile.common b/x11/xscreensaver/Makefile.common
index a48f92ab94c..7773cf0d310 100644
--- a/x11/xscreensaver/Makefile.common
+++ b/x11/xscreensaver/Makefile.common
@@ -29,7 +29,7 @@ CONFIGURE_ARGS+= --without-pam
CONFIGURE_ENV+= X_PRE_LIBS=-lXt
CONFIGURE_ENV+= ac_cv_x_app_defaults="${PREFIX}/lib/X11/app-defaults"
-CONFIGURE_ENV+= PERL="${PERL5}" ac_cv_perl_version="${PERL_VERSION}"
+CONFIGURE_ENV+= PERL="${PERL5}" ac_cv_perl_version="${PERL_VERSION_cmd:sh}"
CONFIGURE_ENV+= INTLTOOL_PERL="${PERL5}"
.if defined(PKGREVISION)
CONFIGURE_ENV+= X_CFLAGS="-DPKGREVISION=${PKGREVISION}"
@@ -42,10 +42,11 @@ PATCHDIR= ${.CURDIR}/../../x11/xscreensaver/patches
.include "../../mk/bsd.prefs.mk"
-.ifndef (PERL_VERSION)
-PERL_VERSION!= if [ -x ${PERL5} ]; then ${PERL5} -e 'print $$]'; else ${ECHO} "5.006"; fi
-MAKEFLAGS+= PERL_VERSION=${PERL_VERSION}
-.endif
+PERL_VERSION_cmd= if ${TEST} -x ${PERL5}; then \
+ ${PERL5} -e 'print $$]'; \
+ else \
+ ${ECHO} "5.006"; \
+ fi
.if (${OPSYS} == "NetBSD")
. if defined(KERBEROS)