diff options
author | Peter Williams <peterw@ximian.com> | 2001-09-04 23:10:38 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2001-09-04 23:10:38 +0800 |
commit | 25001583d25c1755438da7354740c965b93f9ada (patch) | |
tree | ae64f0ec81a20e36700938bfe122ab4305a311cc | |
parent | ca72422494e5ed030c795061ab199d932d93cc83 (diff) | |
download | gsoc2013-evolution-25001583d25c1755438da7354740c965b93f9ada.tar.gz gsoc2013-evolution-25001583d25c1755438da7354740c965b93f9ada.tar.zst gsoc2013-evolution-25001583d25c1755438da7354740c965b93f9ada.zip |
Don't put $(srcdir) in the file path twice.
2001-09-04 Peter Williams <peterw@ximian.com>
* omf-install/Makefile.am (install-data-local): Don't put
$(srcdir) in the file path twice.
svn path=/trunk/; revision=12577
-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) |