diff options
author | Christian Persch <chpe@svn.gnome.org> | 2007-01-29 01:33:22 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2007-01-29 01:33:22 +0800 |
commit | 9f55ee3719b4ba01a4929ca0f9b1e71c24ebae84 (patch) | |
tree | 30b4fae8229b1a5b616faf2d5a6ce16a4461a5cc | |
parent | 6f0304fe9fb31c0a16aa890d4e039f2de0a225b5 (diff) | |
download | gsoc2013-epiphany-9f55ee3719b4ba01a4929ca0f9b1e71c24ebae84.tar.gz gsoc2013-epiphany-9f55ee3719b4ba01a4929ca0f9b1e71c24ebae84.tar.zst gsoc2013-epiphany-9f55ee3719b4ba01a4929ca0f9b1e71c24ebae84.zip |
Fix schemas install command.
2007-01-28 Christian Persch <chpe@svn.gnome.org>
* data/Makefile.am:
Fix schemas install command.
svn path=/trunk/; revision=6852
-rw-r--r-- | ChangeLog | 18 | ||||
-rw-r--r-- | data/Makefile.am | 2 |
2 files changed, 19 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2007-01-28 Christian Persch <chpe@svn.gnome.org> + + * data/Makefile.am: + + Fix schemas install command. + 2007-01-27 Priit Laes <plaes@svn.gnome.org> * embed/mozilla/EphyAboutModule.cpp: @@ -14,6 +20,18 @@ 2007-01-23 Christian Persch <chpe@svn.gnome.org> + * embed/mozilla/EphyBrowser.cpp: + * embed/mozilla/GeckoPrintService.cpp: + * embed/mozilla/GeckoPrintService.h: + * embed/mozilla/GeckoPrintSession.cpp: + + Clear some print settings in the settings we hand to the print job, so + they don't get applied twice. Bug #394818. + + Prepare for printing to PDF (#if 0'd until the gecko bug is fixed). + +2007-01-23 Christian Persch <chpe@svn.gnome.org> + * data/mime-types-permissions.xml: Add another safe mime type. diff --git a/data/Makefile.am b/data/Makefile.am index 27b498aa2..3c21e8cbe 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -60,7 +60,7 @@ install-data-local: $(schema_DATA) if GCONF_SCHEMAS_INSTALL if test -z "$(DESTDIR)" ; then \ for p in $^ ; do \ - GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $$p >&1 > /dev/null; \ + GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $$p 2>&1 > /dev/null; \ done \ fi endif |