From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.devel Subject: MinGW "pwd -W" configure.ac correction Date: Wed, 23 Oct 2013 19:12:44 -0400 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1382569965 16566 80.91.229.3 (23 Oct 2013 23:12:45 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 23 Oct 2013 23:12:45 +0000 (UTC) Cc: emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Oct 24 01:12:51 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1VZ7bd-0001SR-Si for ged-emacs-devel@m.gmane.org; Thu, 24 Oct 2013 01:12:49 +0200 Original-Received: from localhost ([::1]:51754 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VZ7bd-0005A1-Cj for ged-emacs-devel@m.gmane.org; Wed, 23 Oct 2013 19:12:49 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:33889) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VZ7ba-00058f-NE for emacs-devel@gnu.org; Wed, 23 Oct 2013 19:12:47 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VZ7bZ-000648-OK for emacs-devel@gnu.org; Wed, 23 Oct 2013 19:12:46 -0400 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:40650) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VZ7bZ-000644-Kj for emacs-devel@gnu.org; Wed, 23 Oct 2013 19:12:45 -0400 Original-Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1VZ7bY-0006Qg-FV; Wed, 23 Oct 2013 19:12:44 -0400 X-Spook: CDC 2600 Magazine codes import top secret AMEMB Noriega X-Ran: L List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:164492 Archived-At: I think that (thanks to me) there's an issue with the test "$MSYSTEM" = "MINGW32" && abs_srcdir=`(cd "$abs_srcdir"; pwd -W | sed -e 's,^\([[A-Za-z]]\):,/\1,')` stuff in configure. Unlike $srcdir (which this used to use), it seems that $abs_srcdir it not set at this stage in configure. Instead it only gets set by config.status (IIUC). Does this `pwd -W' correction only matter for epaths.h? If so, could it be moved to the epaths-force-w32 rule in Makefile.in? That rule already does some correcting of paths. Or does every instance of $abs_srcdir in all the Makefiles need correcting? If so, we'll have a find way to make config.status do it (AC_CONFIG_COMMANDS?)...