aboutsummaryrefslogtreecommitdiff
path: root/release
diff options
context:
space:
mode:
authorLuigi Rizzo <luigi@FreeBSD.org>2001-10-04 00:42:20 +0000
committerLuigi Rizzo <luigi@FreeBSD.org>2001-10-04 00:42:20 +0000
commitc1a424481925e4875f0c8ad9e420295960ed9ac7 (patch)
tree87ab1edaa658822c98bb9e419ec07cd924face5c /release
parent70ae2d62cbc81445669c2bfb15cbede298c8e9b3 (diff)
downloadsrc-c1a424481925e4875f0c8ad9e420295960ed9ac7.tar.gz
src-c1a424481925e4875f0c8ad9e420295960ed9ac7.zip
Use @__CWD__@ as the magic string meaning "this directory"
in crunch.conf -- the previous choice, CWD, was too subject to false matches (this string will be replaced by the absolute pathname during the build process).
Notes
Notes: svn path=/head/; revision=84429
Diffstat (limited to 'release')
-rw-r--r--release/picobsd/build/Makefile.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/picobsd/build/Makefile.conf b/release/picobsd/build/Makefile.conf
index a358a849689d..23efe810d02e 100644
--- a/release/picobsd/build/Makefile.conf
+++ b/release/picobsd/build/Makefile.conf
@@ -52,4 +52,4 @@ ${BUILDDIR}/crunch.mk: ${BUILDDIR}/crunch1.conf
${BUILDDIR}/crunch1.conf: ${MY_TREE}/crunch.conf
(cd ${BUILDDIR}/crunch ; cat ${.OODATE} | \
- sed -e "s@/usr/src@${SRC}@" -e "s@CWD@${MY_TREE}@" > ${.TARGET} )
+ sed -e "s@/usr/src@${SRC}@" -e "s+@__CWD__@+${MY_TREE}@" > ${.TARGET} )