From: thib Date: Sun, 14 Oct 2007 15:07:46 +0000 (+0000) Subject: install only one file at a time for solaris compatibility X-Git-Tag: ver3_0_4~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0589f73869190392f6c3c1d40226139a79997d84;p=fcron install only one file at a time for solaris compatibility --- diff --git a/doc/Makefile.in b/doc/Makefile.in index 27e2359..dc24d7c 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -4,7 +4,7 @@ # @configure_input@ -# $Id: Makefile.in,v 1.28 2007-04-14 17:04:15 thib Exp $ +# $Id: Makefile.in,v 1.29 2007-10-14 15:07:46 thib Exp $ # The following should not be edited manually (use configure options) # If you must do it, BEWARE: some of the following is also defined @@ -107,9 +107,11 @@ install-staged: clean fi ; \ for i in 1 3 5 8; do \ if test ! -d $$DIR/man$$i; then \ - $(INSTALL) -m 755 -d $$DIR/man$$i ; \ + $(INSTALL) -m 755 -d $$DIR/man$$i ; \ fi ; \ - $(INSTALL) -m 644 $(SRCDIR)/$$l/man/*.$$i $$DIR/man$$i ; \ + for m in $(SRCDIR)/$$l/man/*.$$i; do \ + $(INSTALL) -m 644 $$m $$DIR/man$$i ; \ + done ; \ done ; \ done ) @@ -123,9 +125,11 @@ install-staged: clean fi ; \ for i in txt HTML; do \ if test ! -d $$DIR/$$l/$$i; then \ - $(INSTALL) -m 755 -d $$DIR/$$l/$$i ; \ + $(INSTALL) -m 755 -d $$DIR/$$l/$$i ; \ fi ; \ - $(INSTALL) -m 644 $(SRCDIR)/$$l/$$i/* $$DIR/$$l/$$i/ ;\ + for m in $(SRCDIR)/$$l/$$i/* ; do \ + $(INSTALL) -m 644 $$m $$DIR/$$l/$$i/ ;\ + done ; \ done ; \ done )