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 | |
parent | e86b07cdbb06b361bdb48a6dadb60218376337f3 (diff) | |
download | gsoc2013-evolution-e065bb0549a70249b253523181071508df7c3a46.tar gsoc2013-evolution-e065bb0549a70249b253523181071508df7c3a46.tar.gz gsoc2013-evolution-e065bb0549a70249b253523181071508df7c3a46.tar.bz2 gsoc2013-evolution-e065bb0549a70249b253523181071508df7c3a46.tar.lz gsoc2013-evolution-e065bb0549a70249b253523181071508df7c3a46.tar.xz 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
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Makefile.am | 11 |
2 files changed, 11 insertions, 4 deletions
@@ -1,3 +1,7 @@ +2003-11-17 JP Rosevear <jpr@ximian.com> + + * Makefile.am: Install versioned package config files + 2003-11-14 JP Rosevear <jpr@ximian.com> * configure.in: make source selector flags/libs 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 |