diff options
author | Rodney Dawes <dobey@ximian.com> | 2003-12-02 23:55:48 +0800 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2003-12-02 23:55:48 +0800 |
commit | 8dd5d1de36b4c40b645189ea16d2d84b09e0b1c5 (patch) | |
tree | 569fb274bda929af017be0674a19e635b6bdcb03 /addressbook/gui/component/Makefile.am | |
parent | f7900226cb5862961d363dfd19c7fcedd6496817 (diff) | |
download | gsoc2013-evolution-8dd5d1de36b4c40b645189ea16d2d84b09e0b1c5.tar.gz gsoc2013-evolution-8dd5d1de36b4c40b645189ea16d2d84b09e0b1c5.tar.zst gsoc2013-evolution-8dd5d1de36b4c40b645189ea16d2d84b09e0b1c5.zip |
Version the schemas Removed Added
2003-12-02 Rodney Dawes <dobey@ximian.com>
* gui/component/Makefile.am: Version the schemas
* gui/component/apps_evolution_addressbook.schemas: Removed
* gui/component/apps_evolution_addressbook.schemas.in.in: Added
2003-12-02 Rodney Dawes <dobey@ximian.com>
* gui/Makefile.am: Version the schemas
* gui/apps_evolution_calendar.schemas: Removed
* gui/apps_evolution_calendar.schemas.in.in: Added
2003-12-02 Rodney Dawes <dobey@ximian.com>
* Makefile.am: Version the schemas
* evolution-mail.schemas: Removed
* evolution-mail.schemas.in.in: Added
2003-12-02 Rodney Dawes <dobey@ximian.com>
* Makefile.am: Version the schemas
* apps_evolution_shell.schemas: Removed
* apps_evolution_shell.schemas.in.in: Added
svn path=/trunk/; revision=23579
Diffstat (limited to 'addressbook/gui/component/Makefile.am')
-rw-r--r-- | addressbook/gui/component/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/addressbook/gui/component/Makefile.am b/addressbook/gui/component/Makefile.am index 9583e53c8c..916ee1bfa7 100644 --- a/addressbook/gui/component/Makefile.am +++ b/addressbook/gui/component/Makefile.am @@ -64,7 +64,12 @@ libevolution_addressbook_la_LDFLAGS = -module -avoid-version # GConf schemas schemadir = $(GCONF_SCHEMA_FILE_DIR) -schema_DATA = apps_evolution_addressbook.schemas +schema_in_files = apps_evolution_addressbook.schemas.in.in +schema_DATA = $(schema_in_files:.schemas.in.in=-$(BASE_VERSION).schemas) +%-$(BASE_VERSION).schemas.in: %.schemas.in.in + cp $< $@ + +@INTLTOOL_SCHEMAS_RULE@ install-data-local: if test -z "$(DESTDIR)" ; then \ |