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 /Makefile.am | |
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
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
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 = \ |