diff options
author | tv <tv@pkgsrc.org> | 2005-01-16 22:28:40 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2005-01-16 22:28:40 +0000 |
commit | 8804a27191fada886062debfac81061f8001bbb8 (patch) | |
tree | a3b38468453c4656693c6dea81fe8857769c7e6c /archivers | |
parent | 61c18939441ae137c62640eac1592b20fb27a502 (diff) | |
download | pkgsrc-8804a27191fada886062debfac81061f8001bbb8.tar.gz |
The make rule worked and then didn't work, so make this work again on
NetBSD et al by putting the dynamic PLIST component in post-install.
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/gtar-base/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/archivers/gtar-base/Makefile b/archivers/gtar-base/Makefile index 2450677ec9e..324d8696e7b 100644 --- a/archivers/gtar-base/Makefile +++ b/archivers/gtar-base/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.40 2005/01/16 04:44:50 tv Exp $ +# $NetBSD: Makefile,v 1.41 2005/01/16 22:28:40 tv Exp $ # DISTNAME= tar-1.15.1 @@ -62,9 +62,9 @@ post-install: .if ${GTAR_PROGRAM_PREFIX} != "g" ${LN} -sf ${GTAR_PROGRAM_PREFIX}tar ${PREFIX}/bin/gtar .endif - -${WRKSRC}/.PLIST.rmt: - ${ECHO} 'libexec/${GTAR_PROGRAM_PREFIX}rmt' >$@ +.if ${OPSYS} != "Interix" + ${ECHO} 'libexec/${GTAR_PROGRAM_PREFIX}rmt' >${WRKSRC}/.PLIST.rmt +.endif .include "../../devel/gettext-lib/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |