summaryrefslogtreecommitdiffstats
path: root/gconf
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2006-06-09 20:36:00 +0000
committerTim-Philipp Müller <tim@centricular.net>2006-06-09 20:36:00 +0000
commit42a1b1e7562413fc889311c1b6f6e46eed7fd163 (patch)
tree24315338bd40eb61f1694126071e72de41df6e1a /gconf
parent5848e0f55ef020a02c716f3cb0bafca350f1533a (diff)
gconf/Makefile.am: Honour --disable-schemas-install configure option. Fixes #344100.
Original commit message from CVS: * gconf/Makefile.am: Honour --disable-schemas-install configure option. Fixes #344100.
Diffstat (limited to 'gconf')
-rw-r--r--gconf/Makefile.am18
1 files changed, 15 insertions, 3 deletions
diff --git a/gconf/Makefile.am b/gconf/Makefile.am
index 660a66e3..18108007 100644
--- a/gconf/Makefile.am
+++ b/gconf/Makefile.am
@@ -1,9 +1,14 @@
+GST_SCHEMA_FILES = gstreamer-@GST_MAJORMINOR@.schemas
+
+if GCONF_SCHEMAS_INSTALL
schemadir = @GCONF_SCHEMA_FILE_DIR@
-schema_DATA = gstreamer-@GST_MAJORMINOR@.schemas
+schema_DATA = $(GST_SCHEMA_FILES)
+endif
gstreamer-@GST_MAJORMINOR@.schemas: gstreamer.schemas
cp gstreamer.schemas gstreamer-@GST_MAJORMINOR@.schemas
+if GCONF_SCHEMAS_INSTALL
install-data-local:
@GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) \
--makefile-install-rule $(srcdir)/$(schema_DATA) || \
@@ -12,6 +17,13 @@ install-data-local:
echo "Installation of schemas failed, install them manually"; \
echo "*****************************************************";)
@true
+else
+install-data-local:
+ @echo "***************************************************************"
+ @echo "Not installing schemas, disabled with --disable-schemas-install"
+ @echo "***************************************************************"
+ @true
+endif
-CLEANFILES = $(schema_DATA)
-EXTRA_DIST = $(schema_DATA)
+CLEANFILES = $(GST_SCHEMA_FILES)
+EXTRA_DIST = $(GST_SCHEMA_FILES)