Tue Mar 14 15:34:56 2017 UTC ()
Add missing '+'.
Noted by Dennis Lindroos in 52071.
Only affected builds with 'x11' option turned off (non-default).


(wiz)
diff -r1.10 -r1.11 pkgsrc/sysutils/dbus/options.mk

cvs diff -r1.10 -r1.11 pkgsrc/sysutils/dbus/options.mk (expand / switch to unified diff)

--- pkgsrc/sysutils/dbus/options.mk 2016/02/26 10:24:12 1.10
+++ pkgsrc/sysutils/dbus/options.mk 2017/03/14 15:34:56 1.11
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: options.mk,v 1.10 2016/02/26 10:24:12 jperkin Exp $ 1# $NetBSD: options.mk,v 1.11 2017/03/14 15:34:56 wiz Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.dbus 3PKG_OPTIONS_VAR= PKG_OPTIONS.dbus
4PKG_SUPPORTED_OPTIONS+= debug x11 4PKG_SUPPORTED_OPTIONS+= debug x11
5PKG_SUGGESTED_OPTIONS= x11 5PKG_SUGGESTED_OPTIONS= x11
6 6
7.if (${OPSYS} == "NetBSD" || \ 7.if (${OPSYS} == "NetBSD" || \
8 ${OPSYS} == "FreeBSD" || \ 8 ${OPSYS} == "FreeBSD" || \
9 ${OPSYS} == "OpenBSD" || \ 9 ${OPSYS} == "OpenBSD" || \
10 ${OPSYS} == "Darwin" || \ 10 ${OPSYS} == "Darwin" || \
11 ${OPSYS} == "DragonFly") 11 ${OPSYS} == "DragonFly")
12PKG_SUPPORTED_OPTIONS+= kqueue 12PKG_SUPPORTED_OPTIONS+= kqueue
13PKG_SUGGESTED_OPTIONS+= kqueue 13PKG_SUGGESTED_OPTIONS+= kqueue
14.endif 14.endif
@@ -29,24 +29,24 @@ CONFIGURE_ARGS+= --disable-verbose-mode @@ -29,24 +29,24 @@ CONFIGURE_ARGS+= --disable-verbose-mode
29 29
30.if !empty(PKG_OPTIONS:Mkqueue) 30.if !empty(PKG_OPTIONS:Mkqueue)
31CONFIGURE_ARGS+= --enable-kqueue 31CONFIGURE_ARGS+= --enable-kqueue
32.else 32.else
33CONFIGURE_ARGS+= --disable-kqueue 33CONFIGURE_ARGS+= --disable-kqueue
34.endif 34.endif
35 35
36.if !empty(PKG_OPTIONS:Mx11) 36.if !empty(PKG_OPTIONS:Mx11)
37CONFIGURE_ARGS+= --with-x 37CONFIGURE_ARGS+= --with-x
38. include "../../x11/libX11/buildlink3.mk" 38. include "../../x11/libX11/buildlink3.mk"
39BUILDLINK_DEPMETHOD.libXt= build 39BUILDLINK_DEPMETHOD.libXt= build
40. include "../../x11/libXt/buildlink3.mk" 40. include "../../x11/libXt/buildlink3.mk"
41.else 41.else
42CONFIGURE_ARGS= --without-x 42CONFIGURE_ARGS+= --without-x
43.endif 43.endif
44 44
45.if !empty(PKG_OPTIONS:Mlaunchd) 45.if !empty(PKG_OPTIONS:Mlaunchd)
46MESSAGE_SRC+= MESSAGE.launchd 46MESSAGE_SRC+= MESSAGE.launchd
47PLIST.launchd= yes 47PLIST.launchd= yes
48CONFIGURE_ARGS+= --enable-launchd 48CONFIGURE_ARGS+= --enable-launchd
49CONFIGURE_ARGS+= --with-launchd-agent-dir=${PREFIX}/Library/LaunchAgents 49CONFIGURE_ARGS+= --with-launchd-agent-dir=${PREFIX}/Library/LaunchAgents
50.else 50.else
51CONFIGURE_ARGS+= --disable-launchd 51CONFIGURE_ARGS+= --disable-launchd
52.endif 52.endif