summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Grabsch <bugzilla.gnome.org@v.notjusthosting.com>2011-05-03 09:33:00 +0200
committerMurray Cumming <murrayc@murrayc.com>2011-05-03 09:33:00 +0200
commit4679488b0d0c47b89e04aa048d62cdb49783bfed (patch)
tree270673cb33338677cfef494481526c0edacf321e
parentce458b8884c3ed5f745769385ea33c3a879627b8 (diff)
downloadglibmm-4679488b0d0c47b89e04aa048d62cdb49783bfed.tar.gz
Examples build: Use the GLIB_COMPILE_SCHEMAS variable.
* examples/Makefile.am: Instead of hard-coding glib-compile-schemas. This was an issue in cross-toolchain environments. Bug #648485.
-rw-r--r--ChangeLog8
-rw-r--r--examples/Makefile.am2
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 872345b2..d15216f9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2011-05-03 Volker Grabsch <bugzilla.gnome.org@v.notjusthosting.com>
+
+ Examples build: Use the GLIB_COMPILE_SCHEMAS variable.
+
+ * examples/Makefile.am: Instead of hard-coding glib-compile-schemas.
+ This was an issue in cross-toolchain environments.
+ Bug #648485.
+
2011-05-02 Kalev Lember <kalev@smartlink.ee>
Gio::DBus::Message: Fixed includes for WIN32
diff --git a/examples/Makefile.am b/examples/Makefile.am
index d5225e6e..25e67141 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -97,6 +97,6 @@ dist_noinst_DATA = settings/org.gtkmm.demo.gschema.xml
CLEANFILES = settings/gschemas.compiled
settings/gschemas.compiled: $(srcdir)/settings/org.gtkmm.demo.gschema.xml
- $(AM_V_GEN)glib-compile-schemas --targetdir=settings $(srcdir)/settings
+ $(AM_V_GEN)$(GLIB_COMPILE_SCHEMAS) --targetdir=settings $(srcdir)/settings
all-local: settings/gschemas.compiled