diff options
author | joerg <joerg@pkgsrc.org> | 2007-01-24 14:33:50 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2007-01-24 14:33:50 +0000 |
commit | 24f2398eb974b34b63a21cacfb483496452d1500 (patch) | |
tree | c342bdabd536372b0c6b3b8a4496ec9170f48ed7 /mk/pkginstall | |
parent | e9188ded8aaddec476d0375eab752bdc0a1c9be0 (diff) | |
download | pkgsrc-24f2398eb974b34b63a21cacfb483496452d1500.tar.gz |
... and quote the $ for subst so that ${RM} ends up in the final file.
Diffstat (limited to 'mk/pkginstall')
-rw-r--r-- | mk/pkginstall/bsd.pkginstall.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/pkginstall/bsd.pkginstall.mk b/mk/pkginstall/bsd.pkginstall.mk index e1e4fcaaafa..e4d96b33663 100644 --- a/mk/pkginstall/bsd.pkginstall.mk +++ b/mk/pkginstall/bsd.pkginstall.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkginstall.mk,v 1.20 2007/01/24 13:26:26 joerg Exp $ +# $NetBSD: bsd.pkginstall.mk,v 1.21 2007/01/24 14:33:50 joerg Exp $ # # This Makefile fragment is included by bsd.pkg.mk and implements the # common INSTALL/DEINSTALL scripts framework. To use the pkginstall @@ -705,7 +705,7 @@ FILES_SUBST+= TYPE1_POSTINDEX_CMD= .else USE_TOOLS+= type1inst:run FILES_SUBST+= TYPE1_INDEX_CMD=${TOOLS_PATH.type1inst:Q} -FILES_SUBST+= TYPE1_POSTINDEX_CMD="$${RM} type1inst.log" +FILES_SUBST+= TYPE1_POSTINDEX_CMD="\$${RM} type1inst.log" .endif FONTS_DIRS.x11+= ${FONTS_DIRS.type1} .endif |