diff options
author | tv <tv> | 2005-01-16 22:28:40 +0000 |
---|---|---|
committer | tv <tv> | 2005-01-16 22:28:40 +0000 |
commit | 12650944cc6856ce6e0655b92aa25abcd52680d2 (patch) | |
tree | a3b38468453c4656693c6dea81fe8857769c7e6c /archivers/gtar-base | |
parent | 56d375373dcf0ca7fed7d25cffb99aa22b5c6737 (diff) | |
download | pkgsrc-12650944cc6856ce6e0655b92aa25abcd52680d2.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/gtar-base')
-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" |