diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | omf-install/Makefile.am | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2001-09-04 Peter Williams <peterw@ximian.com> + + * omf-install/Makefile.am (install-data-local): Don't put + $(srcdir) in the file path twice. + 2001-09-01 Christopher James Lahey <clahey@ximian.com> * configure.in: Bumped the required version of gal to 0.11.99.2. diff --git a/omf-install/Makefile.am b/omf-install/Makefile.am index dbd8e62240..31617e3c3e 100644 --- a/omf-install/Makefile.am +++ b/omf-install/Makefile.am @@ -4,7 +4,7 @@ scrollkeeper_localstate_dir = $(SCROLLKEEPER_LOCALSTATE_DIR) install-data-local: $(mkinstalldirs) $(DESTDIR)$(omf_dest_dir) -for file in $(srcdir)/*.omf; do \ - $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(omf_dest_dir); \ + $(INSTALL_DATA) $$file $(DESTDIR)$(omf_dest_dir); \ done -scrollkeeper-update -p $(scrollkeeper_localstate_dir) |