diff options
author | luigi <luigi@FreeBSD.org> | 2001-10-04 00:42:20 +0000 |
---|---|---|
committer | luigi <luigi@FreeBSD.org> | 2001-10-04 00:42:20 +0000 |
commit | 2652a9c097c21cd5834225a14874d282534a6238 (patch) | |
tree | 87ab1edaa658822c98bb9e419ec07cd924face5c /release | |
parent | 8dd9793ef0e17ce8c07651e4efafdbb2dc766356 (diff) | |
download | FreeBSD-src-2652a9c097c21cd5834225a14874d282534a6238.zip FreeBSD-src-2652a9c097c21cd5834225a14874d282534a6238.tar.gz |
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).
Diffstat (limited to 'release')
-rw-r--r-- | release/picobsd/build/Makefile.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/release/picobsd/build/Makefile.conf b/release/picobsd/build/Makefile.conf index a358a84..23efe81 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} ) |