diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-01-10 05:25:32 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-01-10 05:25:32 +0800 |
commit | 678e71b94d7221c659bcc93332a071dc56d10d30 (patch) | |
tree | 8673511940ccb31761c96469cef520ce288cd2d1 /data | |
parent | b89760dbb2551973cdf6cc8647bf518b0f7eb564 (diff) | |
download | gsoc2013-epiphany-678e71b94d7221c659bcc93332a071dc56d10d30.tar gsoc2013-epiphany-678e71b94d7221c659bcc93332a071dc56d10d30.tar.gz gsoc2013-epiphany-678e71b94d7221c659bcc93332a071dc56d10d30.tar.bz2 gsoc2013-epiphany-678e71b94d7221c659bcc93332a071dc56d10d30.tar.lz gsoc2013-epiphany-678e71b94d7221c659bcc93332a071dc56d10d30.tar.xz gsoc2013-epiphany-678e71b94d7221c659bcc93332a071dc56d10d30.tar.zst gsoc2013-epiphany-678e71b94d7221c659bcc93332a071dc56d10d30.zip |
Fix schemas build.
2003-01-09 Marco Pesenti Gritti <marco@it.gnome.org>
* data/Makefile.am:
Fix schemas build.
* embed/mozilla/mozilla-embed-persist.cpp:
Api change grrrr.
Diffstat (limited to 'data')
-rw-r--r-- | data/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/data/Makefile.am b/data/Makefile.am index 452cdd623..141762d4c 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -2,6 +2,7 @@ SUBDIRS = ui art glade starthere @INTLTOOL_SERVER_RULE@ @INTLTOOL_DESKTOP_RULE@ +@INTLTOOL_SCHEMAS_RULE@ server_in_files = GNOME_Epiphany_Automation.server.in GNOME_Epiphany_NautilusView.server.in server_DATA = GNOME_Epiphany_Automation.server GNOME_Epiphany_NautilusView.server @@ -14,6 +15,7 @@ Applicationsdir = $(datadir)/applications Applications_DATA = $(DESKTOP_FILES) schemadir = $(sysconfdir)/gconf/schemas +schema_in_files = epiphany.schemas.in schema_DATA = epiphany.schemas EXTRA_DIST = $(glade_DATA) @@ -25,9 +27,9 @@ install-data-local: done \ fi -CLEANFILES = $(server_DATA) $(Applications_DATA) +CLEANFILES = $(server_DATA) $(Applications_DATA) $(schema_DATA) EXTRA_DIST = $(server_in_files) \ - $(schema_DATA) \ + $(schema_in_files) \ $(DESKTOP_IN_FILES) |