From: Thibault Godouet Date: Mon, 5 Apr 2010 19:20:08 +0000 (+0100) Subject: Fixed fcron.conf path to install from in Makefile (generated file -> not in $SRCDIR) X-Git-Tag: ver3_0_6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=06af2c18f5e72f2889fa398fde0f80c5d53196bd;p=thirdparty%2Ffcron.git Fixed fcron.conf path to install from in Makefile (generated file -> not in $SRCDIR) --- diff --git a/Makefile.in b/Makefile.in index bba9b53..05bb04b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -152,7 +152,7 @@ ifeq ($(FCRONDYN), 1) $(INSTALL) -m 755 fcrondyn $(DESTDIR)$(DESTBIN) endif if test ! -f $(DESTDIR)$(ETC)/fcron.allow -a ! -f $(DESTDIR)$(ETC)/fcron.deny ; then $(INSTALL) -m 644 $(SRCDIR)/files/fcron.allow $(DESTDIR)$(ETC) ; $(INSTALL) -m 644 $(SRCDIR)/files/fcron.deny $(DESTDIR)$(ETC) ; fi - test -f $(DESTDIR)$(ETC)/fcron.conf || $(INSTALL) -m 644 $(SRCDIR)/files/fcron.conf $(DESTDIR)$(ETC) + test -f $(DESTDIR)$(ETC)/fcron.conf || $(INSTALL) -m 644 files/fcron.conf $(DESTDIR)$(ETC) make -C doc install-staged diff --git a/doc/en/changes.sgml b/doc/en/changes.sgml index b9ce648..9ee6b3e 100644 --- a/doc/en/changes.sgml +++ b/doc/en/changes.sgml @@ -27,6 +27,9 @@ A copy of the license is included in gfdl.sgml. Added option -c to check_system_crontabs.sh to specify a fcron.conf file to use + + Fixed Makefile bug preventing installation when building from a different folder than the sources (wrong fcron.conf path) +