From: thib Date: Sun, 31 Mar 2002 17:20:40 +0000 (+0000) Subject: bug corrected : used to try to install fcrondyn even if not compiled X-Git-Tag: ver1564~83 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aecd53844fde48a724d4913e14e29467fb590b75;p=fcron bug corrected : used to try to install fcrondyn even if not compiled --- diff --git a/Makefile.in b/Makefile.in index eaadbac..e7ca520 100644 --- a/Makefile.in +++ b/Makefile.in @@ -4,7 +4,7 @@ # @configure_input@ -# $Id: Makefile.in,v 1.83 2002-03-02 17:28:16 thib Exp $ +# $Id: Makefile.in,v 1.84 2002-03-31 17:20:40 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 @@ -112,7 +112,7 @@ install: all $(INSTALL) -g $(ROOTGROUP) -o $(ROOTNAME) -m 110 -s fcron $(DESTSBIN) $(INSTALL) -g $(GROUPNAME) -o $(USERNAME) -m 6111 -s fcrontab $(DESTBIN) $(INSTALL) -g $(ROOTGROUP) -o $(ROOTNAME) -m 6111 -s fcronsighup $(DESTBIN) - $(INSTALL) -g $(GROUPNAME) -o $(USERNAME) -m 6111 -s fcrondyn $(DESTBIN) + test "$(FCRONDYN)" -eq "1" && $(INSTALL) -g $(GROUPNAME) -o $(USERNAME) -m 6111 -s fcrondyn $(DESTBIN) test -f $(ETC)/fcron.allow || test -f $(ETC)/fcron.deny || $(INSTALL) -m 640 -o $(ROOTNAME) -g $(GROUPNAME) $(SRCDIR)/files/fcron.allow $(SRCDIR)/files/fcron.deny $(ETC) test -f $(ETC)/fcron.conf || $(INSTALL) -m 640 -o $(ROOTNAME) -g $(GROUPNAME) $(SRCDIR)/files/fcron.conf $(ETC) test "${USEPAM}" = "0" || $(SRCDIR)/script/install-pam-conf $(SRCDIR) $(ETC) $(ROOTNAME) $(ROOTGROUP) "$(INSTALL)"