summaryrefslogtreecommitdiff
path: root/benchmark-suite/Makefile.am
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2002-07-26 16:20:53 +0000
committerMarius Vollmer <mvo@zagadka.de>2002-07-26 16:20:53 +0000
commit1bb649f993e77749a463b77b5db4d524473a3c7e (patch)
treed6429ede57fa3f75ca9b9c5e561f0d89137de719 /benchmark-suite/Makefile.am
parentab331c2b6c724f49a409d71abc1c4c3c8099e164 (diff)
downloadguile-1bb649f993e77749a463b77b5db4d524473a3c7e.tar.gz
(dist-hook): Use quotes so that an empty SCM_BENCHMARKS_DIRS works.
Diffstat (limited to 'benchmark-suite/Makefile.am')
-rw-r--r--benchmark-suite/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark-suite/Makefile.am b/benchmark-suite/Makefile.am
index 073a3677a..db7674ccf 100644
--- a/benchmark-suite/Makefile.am
+++ b/benchmark-suite/Makefile.am
@@ -11,6 +11,6 @@ EXTRA_DIST = guile-benchmark lib.scm $(SCM_BENCHMARKS)
## etc without any help, but not all version can handle 'deep'
## directories. So we do it on our own.
dist-hook:
- for d in $(SCM_BENCHMARKS_DIRS); do \
+ for d in "$(SCM_BENCHMARKS_DIRS)"; do \
cp -pR $(srcdir)/$$d $(distdir)/$$d; \
done