diff options
author | JP Rosevear <jpr@ximian.com> | 2003-11-17 22:02:34 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-11-17 22:02:34 +0800 |
commit | e065bb0549a70249b253523181071508df7c3a46 (patch) | |
tree | 7de4bbaad045e44373f3ceb9d7a80996e61400be /Makefile.am | |
parent | e86b07cdbb06b361bdb48a6dadb60218376337f3 (diff) | |
download | gsoc2013-evolution-e065bb0549a70249b253523181071508df7c3a46.tar.gz gsoc2013-evolution-e065bb0549a70249b253523181071508df7c3a46.tar.zst gsoc2013-evolution-e065bb0549a70249b253523181071508df7c3a46.zip |
Install versioned package config files
2003-11-17 JP Rosevear <jpr@ximian.com>
* Makefile.am: Install versioned package config files
svn path=/trunk/; revision=23386
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am index 01d72220a0..4c3bd293bf 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,10 +2,13 @@ changelogs = \ ChangeLog \ ChangeLog.pre-1-4 +%-$(BASE_VERSION).pc: %.pc + mv $< $@ + pkgconfigdir = $(libdir)/pkgconfig -pkgconfig_DATA = \ - camel.pc \ - evolution-shell.pc +pkgconfig_DATA = \ + camel-$(BASE_VERSION).pc \ + evolution-shell-$(BASE_VERSION).pc EXTRA_DIST = \ AUTHORS \ @@ -20,7 +23,7 @@ EXTRA_DIST = \ intltool-merge.in \ intltool-update.in \ intltool-extract.in \ - $(pkgconfig_DATA:.pc=.pc.in) + $(pkgconfig_DATA:$(BASE_VERSION).pc=.pc.in) if ENABLE_SMIME SMIME_DIR=smime |