summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authordmcmahill <dmcmahill>2001-04-14 21:21:25 +0000
committerdmcmahill <dmcmahill>2001-04-14 21:21:25 +0000
commit1bb60bb6427e4128f8d7df839fcf6494815acf82 (patch)
treefc5a8706a84a4f56a23c836a56c35034765d39f6 /x11
parent2b2ca10963ab53da1d0f5712234b7769e05356eb (diff)
downloadpkgsrc-1bb60bb6427e4128f8d7df839fcf6494815acf82.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.common16
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