diff options
author | Harish Krishnaswamy <kharish@novell.com> | 2006-02-06 16:47:45 +0800 |
---|---|---|
committer | Harish Krishnaswamy <kharish@src.gnome.org> | 2006-02-06 16:47:45 +0800 |
commit | 3c44c1e40dd87f7869f19c1ab82fcdcfdf2b720f (patch) | |
tree | 4aada6d340aa9c1d24750658fb46da1f84d022be /data/Makefile.am | |
parent | efc4ab93cf38cafea912e793cc38ef63a658d4e0 (diff) | |
download | gsoc2013-evolution-3c44c1e40dd87f7869f19c1ab82fcdcfdf2b720f.tar.gz gsoc2013-evolution-3c44c1e40dd87f7869f19c1ab82fcdcfdf2b720f.tar.zst gsoc2013-evolution-3c44c1e40dd87f7869f19c1ab82fcdcfdf2b720f.zip |
Remove hard-coded EDS version number. Read it from
2006-02-06 Harish Krishnaswamy <kharish@novell.com>
* configure.in, data/Makefile.am, data/evolution.desktop.in.in:
Remove hard-coded EDS version number. Read it from
evolution-data-server.pc instead.
svn path=/trunk/; revision=31417
Diffstat (limited to 'data/Makefile.am')
-rw-r--r-- | data/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/Makefile.am b/data/Makefile.am index dfee0f16e3..934d1c6a4b 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -2,7 +2,7 @@ desktopdir = $(datadir)/applications 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)|" $< > $@ + sed -e "s|\@BASE_VERSION\@|$(BASE_VERSION)|" -e "s|\@DATASERVER_EXEC_VERSION\@|$(DATASERVER_EXEC_VERSION)|" $< > $@ @INTLTOOL_DESKTOP_RULE@ |