[svnbook commit] r2158 - trunk/src/tools

maxb noreply at red-bean.com
Sun May 14 09:27:09 CDT 2006


Author: maxb
Date: Sun May 14 09:27:09 2006
New Revision: 2158

Modified:
   trunk/src/tools/Makefile.base-vars

Log:
Switch away from using 'install -m 644' as an install command, because it
is useful for the nightly builds to respect umask.  Instead, use 'cp -r'.
Switch from 'install -d' to 'mkdir -p' rather than use install in one
isolated situation.

* src/tools/Makefile.base-vars:
  (INSTALL_DATA): 'install -m 644' -> 'cp -r'.
  (MKDIR): 'install -d' -> 'mkdir -p'.


Modified: trunk/src/tools/Makefile.base-vars
==============================================================================
--- trunk/src/tools/Makefile.base-vars	(original)
+++ trunk/src/tools/Makefile.base-vars	Sun May 14 09:27:09 2006
@@ -25,8 +25,8 @@
 XSLTPROC = xsltproc
 XMLLINT = xmllint
 INSTALL_DIR = $(DESTDIR)/usr/share/doc/OVERRIDE_ME_WITH_SOMETHING_SUITABLE
-INSTALL_DATA = install -m 644
-MKDIR = install -d
+INSTALL_DATA = cp -r
+MKDIR = mkdir -p
 SVNVERSION = svnversion
 
 # You should not normally need to edit anything below here.




More information about the svnbook-dev mailing list