summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortv <tv@pkgsrc.org>2005-01-24 19:24:37 +0000
committertv <tv@pkgsrc.org>2005-01-24 19:24:37 +0000
commit74f13b38060af45345dc100559fcd0502c2a0ad6 (patch)
tree981c2d4543b5ecdc3e06d6f077a99fdd6f910102
parentd4ba0e4935130d380494dc202b94b51cafab4155 (diff)
downloadpkgsrc-74f13b38060af45345dc100559fcd0502c2a0ad6.tar.gz
Simplify and speed up PREPEND_PATH handling.
-rw-r--r--mk/bsd.pkg.mk16
1 files changed, 6 insertions, 10 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk
index f4f06f33714..6f419b80225 100644
--- a/mk/bsd.pkg.mk
+++ b/mk/bsd.pkg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.mk,v 1.1540.2.16 2005/01/24 19:10:21 tv Exp $
+# $NetBSD: bsd.pkg.mk,v 1.1540.2.17 2005/01/24 19:24:37 tv Exp $
#
# This file is in the public domain.
#
@@ -25,12 +25,6 @@ _PKG_PHASES_ALL= fetch checksum ${_PKG_PHASES_WRKDIR}
_PKG_PHASES_WRKDIR= depends extract patch tools wrapper \
configure build test install package
-# PATH is recalculated below, so save its original incarnation here.
-.if !defined(_PATH_ORIG)
-_PATH_ORIG:= ${PATH}
-MAKEFLAGS+= _PATH_ORIG=${_PATH_ORIG:Q}
-.endif
-
############################################################################
# Transform package Makefile variables and set defaults
############################################################################
@@ -1585,12 +1579,14 @@ ${def:C/=.*$//}= ${_${def:C/=.*$//}_CMD:sh}
. endfor
.endif
-PREPEND_PATH?= # empty
-.if !empty(PREPEND_PATH)
+.if !defined(_PATH_ORIG)
+_PATH_ORIG:= ${PATH}
+MAKEFLAGS+= _PATH_ORIG=${_PATH_ORIG:Q}
+
# This is very Special. Because PREPEND_PATH is set with += in reverse order,
# the awk expression reverses the order again (since bootstrap bmake doesn't
# yet support the :[-1..1] construct).
-_PATH_CMD= ${ECHO} `${ECHO} ${PREPEND_PATH:Q} | ${AWK} '{for (i=NF;i>0;i--) print $$i}'`:${_PATH_ORIG} | ${TR} ' ' :
+_PATH_CMD= ${ECHO} `${ECHO} ${PREPEND_PATH:Q} | ${AWK} '{ORS=":";for (i=NF;i>0;i--) print $$i}'`${_PATH_ORIG}
PATH= ${_PATH_CMD:sh} # DOES NOT use :=, to defer evaluation
.endif