diff options
author | agc <agc@pkgsrc.org> | 1999-09-29 12:34:15 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1999-09-29 12:34:15 +0000 |
commit | a127346697278630328361621cc01851f0dc4813 (patch) | |
tree | 69a08a449e3009aae4454e6044fc138d4fc2dbe4 /sysutils/amanda-server/Makefile | |
parent | dd88c0d13a9bdce14cb4d5695e3911ddc0ab3898 (diff) | |
download | pkgsrc-a127346697278630328361621cc01851f0dc4813.tar.gz |
On Solaris, libexec/chg-scsi doesn't get built or installed, so modify
the PLIST accordingly.
Diffstat (limited to 'sysutils/amanda-server/Makefile')
-rw-r--r-- | sysutils/amanda-server/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sysutils/amanda-server/Makefile b/sysutils/amanda-server/Makefile index afd701d2e36..0c26f7ad258 100644 --- a/sysutils/amanda-server/Makefile +++ b/sysutils/amanda-server/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 1999/09/06 19:30:21 bad Exp $ +# $NetBSD: Makefile,v 1.13 1999/09/29 12:34:15 agc Exp $ # FreeBSD Id: Makefile,v 1.9 1997/03/08 05:00:11 gpalmer Exp # @@ -42,4 +42,11 @@ post-install: ${INSTALL_DATA} $$i ${PREFIX}/share/examples/amanda; \ done +.if ${OPSYS} == "SunOS" +PLIST_SRC= ${WRKDIR}/PLIST-src + +pre-install: + ${SED} -e 's|^libexec/chg-scsi$$|@comment libexec/chg-scsi needs headers...|' ${PKGDIR}/PLIST > ${PLIST_SRC} +.endif + .include "../../mk/bsd.pkg.mk" |