diff options
author | Marius Vollmer <mvo@zagadka.de> | 2002-07-26 16:20:53 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2002-07-26 16:20:53 +0000 |
commit | 1bb649f993e77749a463b77b5db4d524473a3c7e (patch) | |
tree | d6429ede57fa3f75ca9b9c5e561f0d89137de719 | |
parent | ab331c2b6c724f49a409d71abc1c4c3c8099e164 (diff) | |
download | guile-1bb649f993e77749a463b77b5db4d524473a3c7e.tar.gz |
(dist-hook): Use quotes so that an empty SCM_BENCHMARKS_DIRS works.
-rw-r--r-- | benchmark-suite/Makefile.am | 2 |
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 |