Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 17 Mar 2004 17:13:57 +0300
From:      Andrey Chernov <ache@nagual.pp.ru>
To:        Kris Kennaway <kris@FreeBSD.ORG>
Cc:        ports-committers@FreeBSD.ORG
Subject:   Re: cvs commit: ports/sysutils/mcron Makefile
Message-ID:  <20040317141356.GA81117@nagual.pp.ru>
In-Reply-To: <200403171234.i2HCYuha073952@repoman.freebsd.org>
References:  <200403171234.i2HCYuha073952@repoman.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, Mar 17, 2004 at 04:34:56AM -0800, Kris Kennaway wrote:
> kris        2004/03/17 04:34:56 PST
> 
>   FreeBSD ports repository
> 
>   Modified files:
>     sysutils/mcron       Makefile 
>   Log:
>   BROKEN on 5.x: Does not install following ache's getopt changes

Here is a patch to fix it for all systems:

--- makefile.in.bak	Fri Dec 12 00:53:35 2003
+++ makefile.in	Wed Mar 17 17:10:28 2004
@@ -693,9 +693,9 @@
 
 install-exec-hook:
 	rm -f $(fpp)cron$(EXEEXT) > /dev/null 2>&1
-	$(INSTALL) --mode='u=rwx' mcron$(EXEEXT) $(fpp)cron$(EXEEXT)
+	$(INSTALL) -m 'u=rwx' mcron$(EXEEXT) $(fpp)cron$(EXEEXT)
 	rm -f $(fpp)crontab$(EXEEXT) > /dev/null 2>&1
-	$(INSTALL) --mode='u=rwxs,og=rx' mcron$(EXEEXT) $(fpp)crontab$(EXEEXT)
+	$(INSTALL) -m 'u=rwxs,og=rx' mcron$(EXEEXT) $(fpp)crontab$(EXEEXT)
 	./mkinstalldirs -m 'u=rwx' /var/cron
 	./mkinstalldirs -m 'u=rwx,og=rx' /var/run
 	./mkinstalldirs -m 'u=rwx,og=rx' @GUILE_SITE@

-- 
Andrey Chernov | http://ache.pp.ru/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20040317141356.GA81117>