diff options
author | Volker Grabsch <bugzilla.gnome.org@v.notjusthosting.com> | 2011-05-03 09:33:00 +0200 |
---|---|---|
committer | Murray Cumming <murrayc@murrayc.com> | 2011-05-03 09:33:00 +0200 |
commit | 4679488b0d0c47b89e04aa048d62cdb49783bfed (patch) | |
tree | 270673cb33338677cfef494481526c0edacf321e /examples/Makefile.am | |
parent | ce458b8884c3ed5f745769385ea33c3a879627b8 (diff) | |
download | glibmm-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.
Diffstat (limited to 'examples/Makefile.am')
-rw-r--r-- | examples/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
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 |