diff options
author | agc <agc> | 1999-09-29 12:34:15 +0000 |
---|---|---|
committer | agc <agc> | 1999-09-29 12:34:15 +0000 |
commit | 9b7ae5980842dadafcc66066d81c48a22c09a9e3 (patch) | |
tree | 69a08a449e3009aae4454e6044fc138d4fc2dbe4 /sysutils | |
parent | 45f8421bc5eff04cbde5ebaeb4be9b9c769cd0fe (diff) | |
download | pkgsrc-9b7ae5980842dadafcc66066d81c48a22c09a9e3.tar.gz |
On Solaris, libexec/chg-scsi doesn't get built or installed, so modify
the PLIST accordingly.
Diffstat (limited to 'sysutils')
-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" |