diff options
author | wiz <wiz@pkgsrc.org> | 2004-02-06 23:02:16 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2004-02-06 23:02:16 +0000 |
commit | 5d85dac0241691ad3e8f78f88e18d957c92c519f (patch) | |
tree | 396cfa962ab190fca7da17d2f5f0ef7787a65ee0 /pkgtools | |
parent | bc69e75612aa8b87ab4acb2f2cf7ff501210eb66 (diff) | |
download | pkgsrc-5d85dac0241691ad3e8f78f88e18d957c92c519f.tar.gz |
Fix sed call so that ${MAKE} including a path works.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/createbuildlink/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgtools/createbuildlink/Makefile b/pkgtools/createbuildlink/Makefile index a1db930f7b5..cba7392bdf6 100644 --- a/pkgtools/createbuildlink/Makefile +++ b/pkgtools/createbuildlink/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2004/02/02 10:06:22 jlam Exp $ +# $NetBSD: Makefile,v 1.25 2004/02/06 23:02:16 wiz Exp $ # DISTNAME= createbuildlink-3.0 @@ -25,8 +25,8 @@ INSTALLATION_DIRS= bin man/man8 do-configure: .for scr in ${SCRIPT} - ${SED} -e 's/@PKGVERSION@/${PKGVERSION}/' \ - -e 's/@MAKE@/${MAKE}/' \ + ${SED} -e 's|@PKGVERSION@|${PKGVERSION}|' \ + -e 's|@MAKE@|${MAKE}|' \ < ${FILESDIR}/${scr} > ${WRKSRC}/${scr} .endfor |