From: Thibault Godouet Date: Tue, 10 Oct 2000 19:00:37 +0000 (+0000) Subject: corrected a bug X-Git-Tag: ver2_9_4~532 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=27c9f4764334bc4935e6c14b5b188deaafe98e2e;p=thirdparty%2Ffcron.git corrected a bug --- diff --git a/Makefile.in b/Makefile.in index 056c2d2..de1eb4d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -4,7 +4,7 @@ # @configure_input@ -# $Id: Makefile.in,v 1.42 2000-10-08 11:49:04 thib Exp $ +# $Id: Makefile.in,v 1.43 2000-10-10 19:00:37 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 @@ -106,7 +106,7 @@ install: all cd doc; $(INSTALL) -m 644 -o root README LICENSE CHANGES *.html \ $(DESTDOC)/fcron-$(VERSION)/ # in order to get correct rights when upgrading : - for i in $(FCRONTABS)/* ; do chown $(USERNAME):$(GROUPNAME) $i ; done + find $(FCRONTABS) -type f -exec chown $(USERNAME):$(GROUPNAME) {} \; if test -f $(ETC)/fcron.deny; then chown $(USERNAME):$(GROUPNAME) $(ETC)/fcron.deny ; fi if test -f $(ETC)/fcron.allow; then chown $(USERNAME):$(GROUPNAME) $(ETC)/fcron.allow ; fi