aboutsummaryrefslogtreecommitdiffstats
path: root/omf-install
diff options
context:
space:
mode:
authorPeter Williams <peterw@ximian.com>2001-09-04 23:10:38 +0800
committerPeter Williams <peterw@src.gnome.org>2001-09-04 23:10:38 +0800
commit25001583d25c1755438da7354740c965b93f9ada (patch)
treeae64f0ec81a20e36700938bfe122ab4305a311cc /omf-install
parentca72422494e5ed030c795061ab199d932d93cc83 (diff)
downloadgsoc2013-evolution-25001583d25c1755438da7354740c965b93f9ada.tar
gsoc2013-evolution-25001583d25c1755438da7354740c965b93f9ada.tar.gz
gsoc2013-evolution-25001583d25c1755438da7354740c965b93f9ada.tar.bz2
gsoc2013-evolution-25001583d25c1755438da7354740c965b93f9ada.tar.lz
gsoc2013-evolution-25001583d25c1755438da7354740c965b93f9ada.tar.xz
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.am2
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)