summaryrefslogtreecommitdiff
path: root/Makefile.comm
diff options
context:
space:
mode:
authorwlemb <wlemb>2003-08-08 18:05:40 +0000
committerwlemb <wlemb>2003-08-08 18:05:40 +0000
commitf72fc6fb6d1d1bf14b6e3c6f4b86de9ee5b7ba4c (patch)
tree99a895dc958d189e97efd005b17d6e3efeb811d4 /Makefile.comm
parentd5ac5ca00485d1284aa9bd4b3f08932bf2e11f26 (diff)
downloadgroff-f72fc6fb6d1d1bf14b6e3c6f4b86de9ee5b7ba4c.tar.gz
* doc/Makefile.sub: Not all shells expand wildcards in the `for'
argument list. Use `ls' to expand, similar to autoconf. * Makefile.comm (install_dev, uninstall_dev): Protect `for' against empty argument lists. * doc/groff.texinfo: Improve documentation how vertical spacing and line breaks interact. Other minor fixes. * tmac/www.tmac: Initialize `www-htmlimage-gap'.
Diffstat (limited to 'Makefile.comm')
-rw-r--r--Makefile.comm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.comm b/Makefile.comm
index 7c89b702..836c262a 100644
--- a/Makefile.comm
+++ b/Makefile.comm
@@ -237,7 +237,7 @@ install_dev:
test -d $(fontsubdir)/generate || \
$(mkinstalldirs) $(fontsubdir)/generate; \
fi
- -for f in $(DEVFILES); do \
+ -for f in ""$(DEVFILES); do \
rm -f $(fontsubdir)/$$f; \
if test -f $$f; then \
$(INSTALL_DATA) $$f $(fontsubdir)/$$f; \
@@ -245,7 +245,7 @@ install_dev:
$(INSTALL_DATA) $(srcdir)/$$f $(fontsubdir)/$$f; \
fi; \
done
- -for f in $(DEVSCRIPTS); do \
+ -for f in ""$(DEVSCRIPTS); do \
rm -f $(fontsubdir)/$$f; \
if test -f $$f; then \
$(INSTALL_SCRIPT) $$f $(fontsubdir)/$$f; \
@@ -256,7 +256,7 @@ install_dev:
.PHONY: uninstall_dev
uninstall_dev:
- -for f in $(DEVFILES) $(DEVSCRIPTS); do rm -f $(fontsubdir)/$$f; done
+ -for f in ""$(DEVFILES) $(DEVSCRIPTS); do rm -f $(fontsubdir)/$$f; done
-if test -d $(fontsubdir)/generate; then \
rmdir $(fontsubdir)/generate; \
fi