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