Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Sep 2015 16:07:58 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r397622 - head/sysutils/mcron/files
Message-ID:  <201509231607.t8NG7wDQ011913@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Wed Sep 23 16:07:57 2015
New Revision: 397622
URL: https://svnweb.freebsd.org/changeset/ports/397622

Log:
  - Fix build as non-root
  
  Approved by:	portmgr blanket

Modified:
  head/sysutils/mcron/files/patch-makefile.in

Modified: head/sysutils/mcron/files/patch-makefile.in
==============================================================================
--- head/sysutils/mcron/files/patch-makefile.in	Wed Sep 23 16:01:08 2015	(r397621)
+++ head/sysutils/mcron/files/patch-makefile.in	Wed Sep 23 16:07:57 2015	(r397622)
@@ -1,8 +1,11 @@
---- makefile.in.orig	2014-05-25 16:09:53.000000000 +0200
-+++ makefile.in	2014-05-27 21:30:53.000000000 +0200
-@@ -1215,13 +1215,13 @@ mcron.c : scm/mcron/main.scm scm/mcron/c
+--- makefile.in.orig	2014-05-25 14:09:53 UTC
++++ makefile.in
+@@ -1213,15 +1213,15 @@ mcron.c : scm/mcron/main.scm scm/mcron/c
+ 	@rm -f mcron.escaped.scm > /dev/null 2>&1
+ 
  install-exec-hook:
- 	@if [ "x@NO_VIXIE_CLOBBER@" != "xyes"   -a   "`id -u`" -eq "0" ]; then \
+-	@if [ "x@NO_VIXIE_CLOBBER@" != "xyes"   -a   "`id -u`" -eq "0" ]; then \
++	@if [ "x@NO_VIXIE_CLOBBER@" != "xyes" ]; then \
         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); \



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