svn commit: r244312 - projects/portbuild/scripts

Mark Linimon linimon at FreeBSD.org
Sun Dec 16 21:05:55 UTC 2012


Author: linimon (doc,ports committer)
Date: Sun Dec 16 21:05:54 2012
New Revision: 244312
URL: http://svnweb.freebsd.org/changeset/base/244312

Log:
  Remove potentially unneccessary chown.

Modified:
  projects/portbuild/scripts/portbuild

Modified: projects/portbuild/scripts/portbuild
==============================================================================
--- projects/portbuild/scripts/portbuild	Sun Dec 16 21:04:07 2012	(r244311)
+++ projects/portbuild/scripts/portbuild	Sun Dec 16 21:05:54 2012	(r244312)
@@ -328,7 +328,9 @@ if [ ! -f /tmp/${buildid}/sources/pnohan
   if [ $? -ne 0 ]; then
     error=255
   else
-    chown ports-${arch} ${chroot}/pnohang
+    # XXX MCL 20121214 as a test, just delete this and add a chmod
+    # chown ports-${arch} ${chroot}/pnohang
+    chmod 555 ${chroot}/pnohang
     cp -p ${chroot}/pnohang /tmp/${buildid}/sources/
   fi
 else


More information about the svn-src-projects mailing list