diff options
author | grant <grant> | 2003-02-13 17:41:37 +0000 |
---|---|---|
committer | grant <grant> | 2003-02-13 17:41:37 +0000 |
commit | 570ab4a791faf33b231dc26b65c5fb88af384cce (patch) | |
tree | 77d9b5b9a5a6ef5dd172a621c17d540787c15f3c /archivers | |
parent | ed036abd632092de9e9f0b9184de83548004da24 (diff) | |
download | pkgsrc-570ab4a791faf33b231dc26b65c5fb88af384cce.tar.gz |
- remove unnecessary if(OPSYS == Darwin), as this is handled
automatically.
- use ${TOUCH} to create empty file, not ${ECHO} '' > filename...
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/gtar-base/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/archivers/gtar-base/Makefile b/archivers/gtar-base/Makefile index 371f9418e1d..bd4c8f9cb3a 100644 --- a/archivers/gtar-base/Makefile +++ b/archivers/gtar-base/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2003/01/21 09:29:45 wiz Exp $ +# $NetBSD: Makefile,v 1.28 2003/02/13 17:41:37 grant Exp $ # DISTNAME= tar-1.13.25 @@ -27,11 +27,6 @@ CONFIGURE_ARGS+= --with-catgets PLIST_SUBST+= GNU_PROGRAM_PREFIX=${GNU_PROGRAM_PREFIX} BUILD_DEFS+= GNU_PROGRAM_PREFIX -.if ${OPSYS} == "Darwin" -PLIST_SRC= ${.CURDIR}/PLIST.Darwin -EXTRACT_SUFX= .tar.gz -.endif - .if !defined(GNU_PROGRAM_PREFIX) || ${GNU_PROGRAM_PREFIX} != "g" PLIST_SUBST+= GTAR_LINK="" .else @@ -39,7 +34,7 @@ PLIST_SUBST+= GTAR_LINK="@comment " .endif post-patch: - @${ECHO} '' >>${WRKSRC}/po/fr.po + @${TOUCH} ${WRKSRC}/po/fr.po post-install: ${INSTALL_DATA} ${FILESDIR}/gtar.1 \ |