diff options
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/ChangeLog | 6 | ||||
| -rw-r--r-- | admin/FOR-RELEASE | 5 | ||||
| -rwxr-xr-x | admin/quick-install-emacs | 9 |
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 @@ | |||
| 1 | 2005-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 | |||
| 1 | 2005-02-15 Jason Rumney <jasonr@gnu.org> | 7 | 2005-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 | ||
| 41 | are 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 | |||
| 242 | lispref/compile.texi "Luc Teirlinck" Chong Yidong | 239 | lispref/compile.texi "Luc Teirlinck" Chong Yidong |
| 243 | lispref/control.texi "Luc Teirlinck" Chong Yidong | 240 | lispref/control.texi "Luc Teirlinck" Chong Yidong |
| 244 | lispref/customize.texi | 241 | lispref/customize.texi |
| 245 | lispref/debugging.texi Joakim Verona <joakim@verona.se> | 242 | lispref/debugging.texi Joakim Verona <joakim@verona.se> Lute Kamstra |
| 246 | lispref/display.texi | 243 | lispref/display.texi |
| 247 | lispref/edebug.texi | 244 | lispref/edebug.texi |
| 248 | lispref/elisp.texi "Luc Teirlinck" | 245 | lispref/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 | ||
| 20 | me="`basename $0`" | 20 | me="`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) | ||
| 24 | LINK='cp -lf' | 25 | LINK='cp -lf' |
| 25 | COPY='cp -f' | 26 | COPY='cp -f' |
| 26 | REMOVE='rm -r' | 27 | REMOVE='rm -r' |
| 28 | MKDIR='mkdir -p' | ||
| 27 | 29 | ||
| 28 | # Used to execute commands once once we create them | 30 | # Used to execute commands once once we create them |
| 29 | EXEC='sh' | 31 | EXEC='sh' |
| 30 | MKDIR='mkdir --verbose -p' | ||
| 31 | 32 | ||
| 32 | NAWK=/usr/bin/nawk | 33 | NAWK=/usr/bin/nawk |
| 33 | 34 | ||
| @@ -157,7 +158,7 @@ DST_INFO="$prefix/info" | |||
| 157 | maybe_mkdir () | 158 | maybe_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 | ||