diff options
author | tv <tv@pkgsrc.org> | 2004-03-11 20:54:09 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2004-03-11 20:54:09 +0000 |
commit | 7c085278d48947522bf45db932efa66bbad19ffc (patch) | |
tree | bb8cb61e7547f7e2b6ffbe72f25af010697808d3 | |
parent | 9c07cf906ae582604a4475a3015bdb613a26c31b (diff) | |
download | pkgsrc-7c085278d48947522bf45db932efa66bbad19ffc.tar.gz |
Do the SunOS-style pax-as-tar walk.
-rw-r--r-- | mk/defs.Interix.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mk/defs.Interix.mk b/mk/defs.Interix.mk index d7c80d3dd29..34e135bb6dd 100644 --- a/mk/defs.Interix.mk +++ b/mk/defs.Interix.mk @@ -1,4 +1,4 @@ -# $NetBSD: defs.Interix.mk,v 1.2 2004/03/11 19:37:42 tv Exp $ +# $NetBSD: defs.Interix.mk,v 1.3 2004/03/11 20:54:09 tv Exp $ # # Variable definitions for the Interix operating system. @@ -23,7 +23,11 @@ FILE_CMD?= /bin/file FIND?= /bin/find GMAKE?= ${LOCALBASE}/bin/gmake GREP?= /bin/grep +.if exists(${LOCALBASE}/bin/gtar) +GTAR?= ${LOCALBASE}/bin/gtar +.else GTAR?= ${LOCALBASE}/bin/tar +.endif GUNZIP_CMD?= /usr/contrib/bin/gunzip -f GZCAT?= /usr/contrib/bin/gunzip -c GZIP?= -9 @@ -61,11 +65,7 @@ SHLOCK= ${LOCALBASE}/bin/shlock SORT?= /bin/sort SU?= /bin/su TAIL?= /bin/tail -.if exists(${LOCALBASE}/bin/tar) TAR?= ${LOCALBASE}/bin/tar -.else -TAR?= /bin/tar -.endif TEE?= /bin/tee TEST?= test # Shell builtin TOUCH?= /bin/touch |