1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

(dist-hook): Use quotes so that an empty SCM_BENCHMARKS_DIRS works.

This commit is contained in:
Marius Vollmer 2002-07-26 16:20:53 +00:00
parent ab331c2b6c
commit 1bb649f993

View file

@ -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