Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
f629af54
Commit
f629af54
authored
Dec 14, 2013
by
Dani Moncayo
Browse files
* configure.ac (srcdir) [MINGW32]: Yet another tweak to avoid failure
when srcdir is ".". Fix also the indentation.
parent
c07ff981
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
10 deletions
+11
-10
configure.ac
configure.ac
+11
-10
No files found.
configure.ac
View file @
f629af54
...
...
@@ -26,16 +26,17 @@ AC_INIT(emacs, 24.3.50)
if test "x$MSYSTEM" = "xMINGW32"
then
. $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
. $srcdir/nt/mingw-cfg.site
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,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment