1 Feb 2008 21:34
danf: curl mkinstalldirs,1.2,1.3
<cvs <at> labb.contactor.se>
2008-02-01 20:34:29 GMT
2008-02-01 20:34:29 GMT
Update of /cvsroot/curl/curl
In directory labb:/tmp/cvs-serv3370
Modified Files:
mkinstalldirs
Log Message:
Make mkinstalldirs ignore umask, for consistency with the rest of the
install process. Note that mkinstalldirs appears to be used only
in some configurations.
Index: mkinstalldirs
===================================================================
RCS file: /cvsroot/curl/curl/mkinstalldirs,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- mkinstalldirs 10 Jan 2000 23:36:14 -0000 1.2
+++ mkinstalldirs 1 Feb 2008 20:34:27 -0000 1.3
<at> <at> -22,9 +22,9 <at> <at>
esac
if test ! -d "$pathcomp"; then
- echo "mkdir $pathcomp" 1>&2
+ echo "mkdir -m0755 $pathcomp" 1>&2
- mkdir "$pathcomp" || lasterr=$?
+ mkdir -m0755 "$pathcomp" || lasterr=$?
if test ! -d "$pathcomp"; then
errstatus=$lasterr
(Continue reading)
RSS Feed