diff options
author | Dan Winship <danw@src.gnome.org> | 2004-02-13 04:16:13 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2004-02-13 04:16:13 +0800 |
commit | 942040b2bf5218f34fd8f4a6aa0592fcb9c8e272 (patch) | |
tree | 563a6ea163f1d56bfdccca0121948118ef488bba | |
parent | 02eced6b4c02a498a9a69d3c09d09d1f187a6e30 (diff) | |
download | gsoc2013-evolution-942040b2bf5218f34fd8f4a6aa0592fcb9c8e272.tar.gz gsoc2013-evolution-942040b2bf5218f34fd8f4a6aa0592fcb9c8e272.tar.zst gsoc2013-evolution-942040b2bf5218f34fd8f4a6aa0592fcb9c8e272.zip |
cp the unversioned file rather than mv'ing it so it doesn't get
* Makefile.am (%-$(BASE_VERSION).pc): cp the unversioned file
rather than mv'ing it so it doesn't get regenerated at install
time.
svn path=/trunk/; revision=24727
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.am | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2004-02-12 Dan Winship <danw@ximian.com> + + * Makefile.am (%-$(BASE_VERSION).pc): cp the unversioned file + rather than mv'ing it so it doesn't get regenerated at install + time. + 2004-02-11 Not Zed <NotZed@Ximian.com> * configure.in (IMPORTERS_*): Added libebook-1.0. Added back diff --git a/Makefile.am b/Makefile.am index fe32a12fc2..4391bc6672 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,7 +3,7 @@ changelogs = \ ChangeLog.pre-1-4 %-$(BASE_VERSION).pc: %.pc - mv $< $@ + cp $< $@ pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = \ |