emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Building Emacs from a new MinGW environment


From: Eli Zaretskii
Subject: Re: Building Emacs from a new MinGW environment
Date: Mon, 16 Sep 2013 23:19:41 +0300

> Date: Mon, 16 Sep 2013 21:44:42 +0200
> From: Dani Moncayo <address@hidden>
> Cc: Emacs development discussions <address@hidden>
> 
> In an MSYS bash, the "pwd" shell builtin has a "-W" option, which
> produces a Windows-native path of the current directory.  That should
> allow to translate any MSYS path.

The question is how to use this feature in the context of this
problem.  We cannot replace all invocations of 'pwd' in configure with
"pwd -W", obviously.

Does it work to replace this line in the top-level Makefile.in

        @(w32srcdir=`echo "${srcdir}" | ${msys_to_w32}` ;       \

with this:

        @(w32srcdir=`(cd "${srcdir}" && pwd -W) | ${msys_to_w32}` ;       \



reply via email to

[Prev in Thread] Current Thread [Next in Thread]