diff options
author | grant <grant@pkgsrc.org> | 2003-09-23 07:26:22 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-09-23 07:26:22 +0000 |
commit | 9b40299c512bde21cc1fabf227e3bc17f54cd2aa (patch) | |
tree | 5b217f1f5aba9e436fd88d4f3acd37a6e694e8f2 /mk/defs.Darwin.mk | |
parent | 7e46cd752c8ebe61ead37573fa23cbca4dcf0e71 (diff) | |
download | pkgsrc-9b40299c512bde21cc1fabf227e3bc17f54cd2aa.tar.gz |
add a TAR definition for a suitable tar implementation, not
necessarily GNU tar.
XXX GTAR should probably always point to real GNU tar later.
Diffstat (limited to 'mk/defs.Darwin.mk')
-rw-r--r-- | mk/defs.Darwin.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mk/defs.Darwin.mk b/mk/defs.Darwin.mk index 128dc338714..edfacce1e1a 100644 --- a/mk/defs.Darwin.mk +++ b/mk/defs.Darwin.mk @@ -1,4 +1,4 @@ -# $NetBSD: defs.Darwin.mk,v 1.55 2003/09/14 16:30:34 danw Exp $ +# $NetBSD: defs.Darwin.mk,v 1.56 2003/09/23 07:26:22 grant Exp $ # # Variable definitions for the Darwin operating system. @@ -59,6 +59,11 @@ SHLOCK= /usr/bin/shlock SORT?= /usr/bin/sort SU?= /usr/bin/su TAIL?= /usr/bin/tail +.if exists(${LOCALBASE}/bin/tar) +TAR?= ${LOCALBASE}/bin/tar +.else +TAR?= /usr/bin/tar +.endif TEE?= /usr/bin/tee TEST?= test # Shell builtin TOUCH?= /usr/bin/touch |