diff options
author | khorben <khorben@pkgsrc.org> | 2015-06-17 06:48:22 +0000 |
---|---|---|
committer | khorben <khorben@pkgsrc.org> | 2015-06-17 06:48:22 +0000 |
commit | 1ccf9aac6e975741ca36b0ffd784435eb298d8d2 (patch) | |
tree | 4a9a13cd8addeabc2a8ce0c51e453b185f04a5c4 /chat | |
parent | 15aa504dc5af70c3ed150b7ebaab150e4222f13e (diff) | |
download | pkgsrc-1ccf9aac6e975741ca36b0ffd784435eb298d8d2.tar.gz |
Fix build with the "gnome" option disabled
Without this patch the configure script might find gconftool-2(1) installed
on the system, and then create and install a schema anyway - and in the
wrong location.
"please commit" dholland@
Diffstat (limited to 'chat')
-rw-r--r-- | chat/libpurple/options.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chat/libpurple/options.mk b/chat/libpurple/options.mk index 3fa4049e0a7..37aae8655f9 100644 --- a/chat/libpurple/options.mk +++ b/chat/libpurple/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.28 2014/12/07 08:45:59 obache Exp $ +# $NetBSD: options.mk,v 1.29 2015/06/17 06:48:22 khorben Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.libpurple PKG_SUPPORTED_OPTIONS+= avahi dbus debug farsight gnome gnutls @@ -21,6 +21,7 @@ PLIST.gnome= yes GCONF_SCHEMAS+= purple.schemas .else CONFIGURE_ARGS+= --disable-schemas-install +CONFIGURE_ENV+= ac_cv_path_GCONFTOOL="no" .endif .if !empty(PKG_OPTIONS:Mgnutls) |