]> git.eshelyaron.com Git - emacs.git/commitdiff
* configure.ac (srcdir) [MINGW32]: Convert to an absolute MSYS
authorDani Moncayo <dmoncayo@gmail.com>
Sat, 14 Dec 2013 09:30:15 +0000 (10:30 +0100)
committerDani Moncayo <dmoncayo@gmail.com>
Sat, 14 Dec 2013 09:30:15 +0000 (10:30 +0100)
path of the form "/c/foo/bar" to simplify conversion of formats.

ChangeLog
configure.ac

index c182c165f5750ef8358200d2cf803af9be18ed20..4c676d1cdfd59d6a56eebb5de491321e53c681c5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-12-14  Dani Moncayo  <dmoncayo@gmail.com>
+
+       * configure.ac (srcdir) [MINGW32]: Convert to an absolute MSYS
+       path of the form "/c/foo/bar" to simplify conversion of formats.
+
 2013-12-13  Glenn Morris  <rgm@gnu.org>
 
        * INSTALL: No longer mention load-path and site-init/site-load.
index 41258fcb7a949e7b2bff360dd395d185b7d3836e..2e9eee6b367dd1ea31bc590c9e40565a7bf6259e 100644 (file)
@@ -24,7 +24,16 @@ dnl  along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
 AC_PREREQ(2.65)
 AC_INIT(emacs, 24.3.50)
 
-test "x$MSYSTEM" = "xMINGW32" && . $srcdir/nt/mingw-cfg.site
+if test "x$MSYSTEM" = "xMINGW32"
+then
+   . $srcdir/nt/mingw-cfg.site
+
+   # Convert srcdir to an absolute MSYS path of the form "/c/foo/bar"
+   # to simplify later conversions of paths to windows-native format
+   # "c:/foo/bar"
+   srcdir=`cd "${srcdir}" && pwd -W`
+   srcdir="/${srcdir:0:1}${srcdir:2}"
+fi
 
 dnl Set emacs_config_options to the options of 'configure', quoted for the shell,
 dnl and then quoted again for a C string.  Separate options with spaces.