diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2001-04-14 21:21:25 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2001-04-14 21:21:25 +0000 |
commit | 096f4aad4362ee1ba0d616bc018900440fee08d8 (patch) | |
tree | fc5a8706a84a4f56a23c836a56c35034765d39f6 /x11 | |
parent | c18710a2cc4c274d3f88c482c5a4a0789a162983 (diff) | |
download | pkgsrc-096f4aad4362ee1ba0d616bc018900440fee08d8.tar.gz |
FOO!= .... ${ECHO} has to come after bsd.pkg.mk so that ECHO is set
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xscreensaver/Makefile.common | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/x11/xscreensaver/Makefile.common b/x11/xscreensaver/Makefile.common index ef1ed83b880..c6060fd77a3 100644 --- a/x11/xscreensaver/Makefile.common +++ b/x11/xscreensaver/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.14 2001/04/09 12:01:26 wiz Exp $ +# $NetBSD: Makefile.common,v 1.15 2001/04/14 21:21:25 dmcmahill Exp $ # DISTNAME= xscreensaver-3.28 @@ -44,12 +44,6 @@ post-patch: .include "../../mk/bsd.prefs.mk" -PERL?= ${LOCALBASE}/bin/perl -.ifndef (PERL_VERSION) -PERL_VERSION!= if [ -x ${PERL} ]; then ${PERL} -e 'print $$]'; else ${ECHO} "5.006"; fi -MAKEFLAGS+= PERL_VERSION="${PERL_VERSION}" -.endif - .if (${OPSYS} == "NetBSD") .if defined(KERBEROS) CFLAGS+= -I/usr/include/kerberosIV @@ -59,3 +53,11 @@ CONFIGURE_ARGS+= --without-kerberos .endif .include "../../mk/bsd.pkg.mk" + +# this has to come after bsd.pkg.mk for ECHO. + +PERL?= ${LOCALBASE}/bin/perl +.ifndef (PERL_VERSION) +PERL_VERSION!= if [ -x ${PERL} ]; then ${PERL} -e 'print $$]'; else ${ECHO} "5.006"; fi +MAKEFLAGS+= PERL_VERSION="${PERL_VERSION}" +.endif |