summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authortaca <taca>2008-12-12 06:22:31 +0000
committertaca <taca>2008-12-12 06:22:31 +0000
commit1e2657e2564270fa81fc392bc598e979154bde40 (patch)
tree380ee1fd7890996aec53c0fca4d6036a0968d3ff /sysutils
parent0049ccd843cdaeb36ea258c70e97d6a4fda58cad (diff)
downloadpkgsrc-1e2657e2564270fa81fc392bc598e979154bde40.tar.gz
* Since PLIST.${OPSYS} is automatically included in PLIST_SRC,
there is no need to explicitly set. * Contrastly, if PLIST_SRC includes only PLIST, you need to set PLIST explicitly. Fix build problem on NetBSD 4.1_STABLE (maybe NetBSD < 5).
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/hal/Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/sysutils/hal/Makefile b/sysutils/hal/Makefile
index a1484afab0b..77b49b4f6df 100644
--- a/sysutils/hal/Makefile
+++ b/sysutils/hal/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.20 2008/12/11 18:25:17 reinoud Exp $
+# $NetBSD: Makefile,v 1.21 2008/12/12 06:22:31 taca Exp $
#
DISTNAME= hal-0.5.11
@@ -37,16 +37,15 @@ CONFIGURE_ARGS+= --with-usb-ids=${PREFIX}/share/usbids
.if ${OPSYS} == "FreeBSD" || ${OPSYS} == "DragonFly"
CONFIGURE_ARGS+= --with-eject=/usr/sbin/cdcontrol
CONFIGURE_ARGS+= --with-backend=freebsd
-PLIST_SRC= PLIST.FreeBSD PLIST
.endif
.if !empty(MACHINE_PLATFORM:MNetBSD-[5-9]*)
CONFIGURE_ARGS+= --with-backend=netbsd
-PLIST_SRC= PLIST.NetBSD PLIST
HAL_GROUP= operator
.elif ${OPSYS} == "NetBSD"
# Pull in the dummy backend for older NetBSD
CONFIGURE_ARGS+= --with-backend=dummy
+PLIST_SRC= PLIST
.endif
.if ${OPSYS} == "Linux"