diff options
author | Rodney Dawes <dobey@ximian.com> | 2004-01-23 04:55:04 +0800 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2004-01-23 04:55:04 +0800 |
commit | c9b56375fe7b21673fd813d3e957b64fe6f9f7f0 (patch) | |
tree | 0b07c294007e0739b5ee303c0c0dbd7690f20586 /data/Makefile.am | |
parent | 48a7a688f2bd5253805ad6525b57a4ec464dbecd (diff) | |
download | gsoc2013-evolution-c9b56375fe7b21673fd813d3e957b64fe6f9f7f0.tar.gz gsoc2013-evolution-c9b56375fe7b21673fd813d3e957b64fe6f9f7f0.tar.zst gsoc2013-evolution-c9b56375fe7b21673fd813d3e957b64fe6f9f7f0.zip |
Add rule to substitute BASE_VERSION in keys Removed this file from CVS
2004-01-22 Rodney Dawes <dobey@ximian.com>
* data/Makefile.am: Add rule to substitute BASE_VERSION in keys
* data/evolution.keys.in: Removed this file from CVS
* data/evolution.keys.in.in: Update to use BASE_VERSION and the
new addressbook vcard control that replaces the MiniCard control
svn path=/trunk/; revision=24373
Diffstat (limited to 'data/Makefile.am')
-rw-r--r-- | data/Makefile.am | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/data/Makefile.am b/data/Makefile.am index f33f034bf0..8f2f1dc56f 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -3,11 +3,15 @@ desktop_in_in_file = evolution.desktop.in.in desktop_file = $(desktop_in_in_file:.desktop.in.in=.desktop) %.desktop.in: %.desktop.in.in sed -e "s|\@BASE_VERSION\@|$(BASE_VERSION)|" $< > $@ + @INTLTOOL_DESKTOP_RULE@ keysdir = $(datadir)/mime-info -keys_in_file = evolution.keys.in -keys_file = $(keys_in_file:.keys.in=.keys) +keys_in_file = evolution.keys.in.in +keys_file = $(keys_in_file:.keys.in.in=.keys) +%.keys.in: %.keys.in.in + sed -e "s|\@BASE_VERSION\@|$(BASE_VERSION)|" $< > $@ + @INTLTOOL_KEYS_RULE@ mimedir = $(datadir)/mime-info |