diff options
-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 = \ |