aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
Diffstat (limited to 'admin')
-rw-r--r--admin/ChangeLog6
-rw-r--r--admin/FOR-RELEASE5
-rwxr-xr-xadmin/quick-install-emacs9
3 files changed, 12 insertions, 8 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog
index dbc48dfa696..efcd9b2d5e5 100644
--- a/admin/ChangeLog
+++ b/admin/ChangeLog
@@ -1,3 +1,9 @@
12005-03-02 Miles Bader <miles@gnu.org>
2
3 * quick-install-emacs: Only use the mkdir --verbose option if the
4 script's --verbose option was specified (this avoids problems with
5 default usage on systems where mkdir doesn't support that option).
6
12005-02-15 Jason Rumney <jasonr@gnu.org> 72005-02-15 Jason Rumney <jasonr@gnu.org>
2 8
3 * nt/makedist.bat: Do not rely on non-standard behaviour of 9 * nt/makedist.bat: Do not rely on non-standard behaviour of
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE
index e4d0795cc67..ca6f2d94724 100644
--- a/admin/FOR-RELEASE
+++ b/admin/FOR-RELEASE
@@ -37,9 +37,6 @@ invalid pointer from string_free_list.
37 37
38** Fix up url-ldap.el. 38** Fix up url-ldap.el.
39 39
40** url/*.el has lots of `(declare (special ...))' which
41are meaningless. What's that trying to do?
42
43* BUGS 40* BUGS
44 41
45** Ange-ftp should ignore irrelevant IPv6 errors: 42** Ange-ftp should ignore irrelevant IPv6 errors:
@@ -242,7 +239,7 @@ lispref/commands.texi "Luc Teirlinck" Chong Yidong
242lispref/compile.texi "Luc Teirlinck" Chong Yidong 239lispref/compile.texi "Luc Teirlinck" Chong Yidong
243lispref/control.texi "Luc Teirlinck" Chong Yidong 240lispref/control.texi "Luc Teirlinck" Chong Yidong
244lispref/customize.texi 241lispref/customize.texi
245lispref/debugging.texi Joakim Verona <joakim@verona.se> 242lispref/debugging.texi Joakim Verona <joakim@verona.se> Lute Kamstra
246lispref/display.texi 243lispref/display.texi
247lispref/edebug.texi 244lispref/edebug.texi
248lispref/elisp.texi "Luc Teirlinck" 245lispref/elisp.texi "Luc Teirlinck"
diff --git a/admin/quick-install-emacs b/admin/quick-install-emacs
index 16cd936a783..9a9d1203d96 100755
--- a/admin/quick-install-emacs
+++ b/admin/quick-install-emacs
@@ -19,15 +19,16 @@ VERBOSE=''
19 19
20me="`basename $0`" 20me="`basename $0`"
21 21
22# Install commands (these commands are also expected to understand the 22# Install commands (if the user specifies the `--verbose' option, it is
23# GNU -v (--verbose) option) 23# passed to these commands, so that feature only works if these commands
24# implement it too)
24LINK='cp -lf' 25LINK='cp -lf'
25COPY='cp -f' 26COPY='cp -f'
26REMOVE='rm -r' 27REMOVE='rm -r'
28MKDIR='mkdir -p'
27 29
28# Used to execute commands once once we create them 30# Used to execute commands once once we create them
29EXEC='sh' 31EXEC='sh'
30MKDIR='mkdir --verbose -p'
31 32
32NAWK=/usr/bin/nawk 33NAWK=/usr/bin/nawk
33 34
@@ -157,7 +158,7 @@ DST_INFO="$prefix/info"
157maybe_mkdir () 158maybe_mkdir ()
158{ 159{
159 if ! test -d "$1"; then 160 if ! test -d "$1"; then
160 $MKDIR "$1" 2>&1 | sed "s/^mkdir:/$me:/" 1>&2 161 $MKDIR $VERBOSE "$1" 2>&1 | sed "s/^mkdir:/$me:/" 1>&2
161 fi 162 fi
162} 163}
163 164