diff options
author | cube <cube@pkgsrc.org> | 2004-08-09 21:13:37 +0000 |
---|---|---|
committer | cube <cube@pkgsrc.org> | 2004-08-09 21:13:37 +0000 |
commit | 1a5d6acbd1fe099e99bf15843f450923025be75f (patch) | |
tree | 06a4ae46660486c8118bd0086b95ba6c83af5d30 /pkgtools/pkg_tarup/Makefile | |
parent | ee0a9bedcacd98afef529dd32f170bc459a28ad6 (diff) | |
download | pkgsrc-1a5d6acbd1fe099e99bf15843f450923025be75f.tar.gz |
Gross hack to prevent quoting errors when root's shell is the unfamous csh.
Should hopefully fix PR 26551, but if anyone has a better solution, or is
willing to do the necessary work to allow pkg_tarup to be run by any user,
ideas are welcomed.
Say hi to version 1.6.2.
Diffstat (limited to 'pkgtools/pkg_tarup/Makefile')
-rw-r--r-- | pkgtools/pkg_tarup/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgtools/pkg_tarup/Makefile b/pkgtools/pkg_tarup/Makefile index 2bcd493477d..e7adc1ef646 100644 --- a/pkgtools/pkg_tarup/Makefile +++ b/pkgtools/pkg_tarup/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.21 2004/07/19 17:38:36 erh Exp $ +# $NetBSD: Makefile,v 1.22 2004/08/09 21:13:37 cube Exp $ -DISTNAME= pkg_tarup-1.6.1 +DISTNAME= pkg_tarup-1.6.2 CATEGORIES= pkgtools MASTER_SITES= # empty DISTFILES= # empty @@ -26,7 +26,8 @@ SCRIPT_SUBST+= \ PKG_TOOLS_BIN=${PKG_TOOLS_BIN:Q} \ SED=${SED:Q} \ SH=${SH:Q} \ - SU=${SU:Q} + SU=${SU:Q} \ + XARGS=${XARGS:Q} SCRIPT_SUBST_SED= ${SCRIPT_SUBST:S/=/@!/:S/$/!g/:S/^/ -e s!@/} |