svn commit: r245187 - projects/mtree/share/info

Brooks Davis brooks at FreeBSD.org
Tue Jan 8 22:23:10 UTC 2013


Author: brooks
Date: Tue Jan  8 22:23:09 2013
New Revision: 245187
URL: http://svnweb.freebsd.org/changeset/base/245187

Log:
  Install the info directory file owner writable so subsequent calls of
  install-info work when run by the non-root owner.
  
  This is something of a hack, but given the future of info in the base
  system that's probably ok.

Modified:
  projects/mtree/share/info/Makefile

Modified: projects/mtree/share/info/Makefile
==============================================================================
--- projects/mtree/share/info/Makefile	Tue Jan  8 22:21:17 2013	(r245186)
+++ projects/mtree/share/info/Makefile	Tue Jan  8 22:23:09 2013	(r245187)
@@ -17,6 +17,6 @@ beforeinstall:
 	@exit 3;
 .endif
 .if !exists(${DESTDIR}${INFODIR}/dir)
-	${INSTALL} -o ${INFOOWN} -g ${INFOGRP} -m ${INFOMODE} \
+	${INSTALL} -o ${INFOOWN} -g ${INFOGRP} -m 644 \
 		 dir-tmpl ${DESTDIR}${INFODIR}/dir
 .endif


More information about the svn-src-projects mailing list