diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-12-08 13:44:25 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-12-08 13:44:25 +0000 |
commit | 2a19514098f24c47f8642e7f0b4b762e5dc9d05d (patch) | |
tree | 2b69b72488c2249348986a949ddb97388c1e71f8 | |
parent | c99d5276814f768825e7990864c2182d520fead8 (diff) | |
download | gst-plugins-bad-2a19514098f24c47f8642e7f0b4b762e5dc9d05d.tar.gz gst-plugins-bad-2a19514098f24c47f8642e7f0b4b762e5dc9d05d.tar.bz2 gst-plugins-bad-2a19514098f24c47f8642e7f0b4b762e5dc9d05d.zip |
fail gracefully if can't install
Original commit message from CVS:
fail gracefully if can't install
-rw-r--r-- | gconf/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gconf/Makefile.am b/gconf/Makefile.am index e443af70..82dfd5af 100644 --- a/gconf/Makefile.am +++ b/gconf/Makefile.am @@ -3,6 +3,11 @@ schema_DATA = gstreamer.schemas install-data-local: GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) \ - --makefile-install-rule $(srcdir)/$(schema_DATA) + --makefile-install-rule $(srcdir)/$(schema_DATA) || \ + echo ;\ + echo "*****************************************************"; \ + echo "Installation of schemas failed, install them manually"; \ + echo "*****************************************************"; + @true EXTRA_DIST = gstreamer.schemas |