* configure.ac (srcdir) [MINGW32]: Yet another tweak to avoid failure
when srcdir is ".". Fix also the indentation.
This commit is contained in:
parent
c07ff981a3
commit
f629af5493
1 changed files with 10 additions and 9 deletions
19
configure.ac
19
configure.ac
|
@ -26,16 +26,17 @@ AC_INIT(emacs, 24.3.50)
|
|||
|
||||
if test "x$MSYSTEM" = "xMINGW32"
|
||||
then
|
||||
. $srcdir/nt/mingw-cfg.site
|
||||
. $srcdir/nt/mingw-cfg.site
|
||||
|
||||
if test ${srcdir:0:1} = "/" -o ${srcdir:1:1} = ":"
|
||||
then
|
||||
# srcdir is an absolute path. In this case, force the format
|
||||
# "/c/foo/bar", to simplify later conversions to native Windows
|
||||
# format ("c:/foo/bar")
|
||||
srcdir=`cd "${srcdir}" && pwd -W`
|
||||
srcdir="/${srcdir:0:1}${srcdir:2}"
|
||||
fi
|
||||
case $srcdir in
|
||||
/* | ?:*)
|
||||
# srcdir is an absolute path. In this case, force the format
|
||||
# "/c/foo/bar", to simplify later conversions to native Windows
|
||||
# format ("c:/foo/bar")
|
||||
srcdir=`cd "${srcdir}" && pwd -W`
|
||||
srcdir="/${srcdir:0:1}${srcdir:2}"
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
dnl Set emacs_config_options to the options of 'configure', quoted for the shell,
|
||||
|
|
Loading…
Add table
Reference in a new issue