diff options
author | jeh <jeh@FreeBSD.org> | 2003-10-23 23:56:02 +0000 |
---|---|---|
committer | jeh <jeh@FreeBSD.org> | 2003-10-23 23:56:02 +0000 |
commit | 61a1f135a3242f8ad130ccc144b57b31f14492a1 (patch) | |
tree | 7a0d55e5d4a66f5dac1fe04535bdf5dafe95ccb7 /misc/amanda32-server | |
parent | a4a7b0c9f38f0285d1389daefd64fb05d51eb532 (diff) | |
download | FreeBSD-ports-61a1f135a3242f8ad130ccc144b57b31f14492a1.zip FreeBSD-ports-61a1f135a3242f8ad130ccc144b57b31f14492a1.tar.gz |
Amd64 does not seem to support scsi-chg, so disable it
Diffstat (limited to 'misc/amanda32-server')
-rw-r--r-- | misc/amanda32-server/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/misc/amanda32-server/Makefile b/misc/amanda32-server/Makefile index cf3a0f7..757e521 100644 --- a/misc/amanda32-server/Makefile +++ b/misc/amanda32-server/Makefile @@ -134,7 +134,11 @@ CONFIGURE_ARGS+= --with-portrange=${AMANDA_PORTRANGE} .if ${OSVERSION} < 400000 PLIST_SUB+= SCSICHG='' .elif ${OSVERSION} >= 480000 +.if ${MACHINE_ARCH} == "amd64" +PLIST_SUB+= SCSICHG='@comment ' +.else PLIST_SUB+= SCSICHG='' +.endif .else PLIST_SUB+= SCSICHG='@comment ' .endif |