diff options
author | taca <taca@pkgsrc.org> | 2008-12-12 06:22:31 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2008-12-12 06:22:31 +0000 |
commit | 4ad8fa9f9ec89a58ffcddd8f2d63cef8cb872a68 (patch) | |
tree | 380ee1fd7890996aec53c0fca4d6036a0968d3ff /sysutils | |
parent | 29f86c70ee282ff8a43199fc873ad425d724b107 (diff) | |
download | pkgsrc-4ad8fa9f9ec89a58ffcddd8f2d63cef8cb872a68.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/Makefile | 5 |
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" |