quick-install-emacs: Be more clever about locating info directory
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1570
This commit is contained in:
parent
c11ffe1a4c
commit
40c3f43443
2 changed files with 17 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2009-03-11 Miles Bader <Miles Bader <miles@gnu.org>>
|
||||
|
||||
* quick-install-emacs: Be more clever about locating info directory.
|
||||
|
||||
2009-02-24 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* nt/README.W32: Fix typos.
|
||||
|
|
|
@ -176,7 +176,19 @@ VERSION=`grep 'defconst[ ]*emacs-version' $SRC/lisp/version.el \
|
|||
DST_SHARE="$prefix/share/emacs/$VERSION"
|
||||
DST_BIN="$prefix/bin"
|
||||
DST_LIBEXEC="$prefix/libexec/emacs/$VERSION/$ARCH"
|
||||
DST_INFO="$prefix/info"
|
||||
|
||||
# There are various common places for the info dir to be, so try to
|
||||
# use whatever's already there, defaulting to (and preferring)
|
||||
# .../share/info.
|
||||
#
|
||||
DST_INFO=''
|
||||
for D in "$prefix/share/info" "$prefix/info"; do
|
||||
if test -d "$D"; then
|
||||
DST_INFO="$D"
|
||||
break
|
||||
fi
|
||||
done
|
||||
DST_INFO=${DST_INFO:-"$prefix/share/info"}
|
||||
|
||||
maybe_mkdir ()
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue