Check-in Number:
|
433 | |
Date: |
2001-Apr-19 09:33:55 (local)
2001-Apr-19 07:33:55 (UTC) |
User: | rse |
Branch: | |
Comment: |
*** empty log message *** |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/shtool/ChangeLog 1.145 -> 1.146
--- ChangeLog 2001/02/27 12:46:33 1.145
+++ ChangeLog 2001/04/19 07:33:55 1.146
@@ -9,6 +9,12 @@
ChangeLog
+ Changes between 1.5.2 and 1.5.3 (29-Feb-2001 to xx-Apr-2001):
+
+ *) Fix `shtool mkdir': option -m was only applied if
+ option -p was present.
+ [Ralf S. Engelschall]
+
Changes between 1.5.1 and 1.5.2 (06-Jul-2000 to 29-Feb-2001):
*) Fixed IFS usage in `shtool slo': `OIFS="$IFS" IFS="..."' is not
|
|
ossp-pkg/shtool/THANKS 1.18 -> 1.19
--- THANKS 2001/01/29 14:06:27 1.18
+++ THANKS 2001/04/19 07:33:55 1.19
@@ -21,9 +21,9 @@
o Martin Kraemer <Martin.Kraemer@MchP.Siemens.De>
o Markus F.X.J. Oberhumer <markus.oberhumer@jk.uni-linz.ac.at>
o Benjamin Saller <case@appliedtheory.com>
+ o Christoph Schug <chris@schug.net>
o Sascha Schumann <sascha@schumann.cx>
o Yitzchak Scott-Thoennes <sthoenna@efn.org>
- o Christoph Schug <chris@schug.net>
o Peter Simons <simons@cys.de>
o Evgeny Stambulchik <fnevgeny@plasma-gate.weizmann.ac.il>
o Gopal Narayanan <gopal@fcrao1.phast.umass.edu>
|
|
ossp-pkg/shtool/sh.mkdir 1.14 -> 1.15
--- sh.mkdir 2001/01/17 09:55:11 1.14
+++ sh.mkdir 2001/04/19 07:33:55 1.15
@@ -49,6 +49,12 @@
echo "mkdir $p" 1>&2
fi
mkdir $p || errstatus=$?
+ if [ ".$opt_m" != . ]; then
+ if [ ".$opt_t" = .yes ]; then
+ echo "chmod $opt_m $pathcomp" 1>&2
+ fi
+ chmod $opt_m $pathcomp || errstatus=$?
+ fi
else
# the smart situation
set fnord `echo ":$p" |\
|
|