emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r114990: * Makefile.in (epaths-force-w32): Move srcd


From: Glenn Morris
Subject: [Emacs-diffs] trunk r114990: * Makefile.in (epaths-force-w32): Move srcdir tweak here
Date: Tue, 05 Nov 2013 21:51:11 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 114990
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Tue 2013-11-05 16:51:09 -0500
message:
  * Makefile.in (epaths-force-w32): Move srcdir tweak here
  
  * configure.ac (abs_srcdir) [MINGW32]: No point setting it here,
  config.status computes it.
modified:
  ChangeLog                      changelog-20091113204419-o5vbwnq5f7feedwu-1538
  Makefile.in                    makefile.in-20091113204419-o5vbwnq5f7feedwu-446
  configure.ac                   
configure.in-20091113204419-o5vbwnq5f7feedwu-783
=== modified file 'ChangeLog'
--- a/ChangeLog 2013-11-05 16:15:24 +0000
+++ b/ChangeLog 2013-11-05 21:51:09 +0000
@@ -1,5 +1,9 @@
 2013-11-05  Glenn Morris  <address@hidden>
 
+       * configure.ac (abs_srcdir) [MINGW32]: No point setting it here,
+       config.status computes it.
+       * Makefile.in (epaths-force-w32): Move srcdir tweak here.
+
        * autogen: Remove directory.  Move update_autogen to admin/.
        * autogen.sh: Remove reference to copy_autogen.
        * GNUmakefile (configure):

=== modified file 'Makefile.in'
--- a/Makefile.in       2013-11-05 07:54:03 +0000
+++ b/Makefile.in       2013-11-05 21:51:09 +0000
@@ -342,8 +342,16 @@
 # nt/epaths.nt as the template.
 # Use the value of ${locallisppath} supplied by `configure',
 # to support the --enable-locallisppath argument.
+#
+# When building with MinGW inside the MSYS tree, 'pwd' produces directories
+# relative to the root of the MSYS tree, e.g. '/home/user/foo' instead of
+# '/d/MSYS/home/user/foo'.  If such a value of srcdir is written to
+# src/epaths.h, that causes temacs to fail, because, being a MinGW
+# program that knows nothing of MSYS root substitution, it cannot find
+# the data directory.  "pwd -W" produces Windows-style 'd:/foo/bar'
+# absolute directory names, so we use it here to countermand that lossage.
 epaths-force-w32: FRC
-       @(w32srcdir=`echo "${abs_srcdir}" | ${msys_to_w32}` ;   \
+       @(w32srcdir=`cd "${srcdir}"; pwd -W | sed -e 's,^\([A-Za-z]\):,/\1,' | 
${msys_to_w32}` ;        \
          prefixpattern=`echo '${prefix}' | ${msys_to_w32} | 
${msys_sed_sh_escape}` ; \
          locallisppath=`echo '${locallisppath}' | ${msys_lisppath_to_w32} | 
${msys_prefix_subst}` ; \
          sed < ${srcdir}/nt/epaths.nt > epaths.h.$$$$          \

=== modified file 'configure.ac'
--- a/configure.ac      2013-11-05 07:11:24 +0000
+++ b/configure.ac      2013-11-05 21:51:09 +0000
@@ -419,17 +419,6 @@
                [Show Gtk+/Gdk deprecation warnings for Gtk+ >= 3.0])],
 [ac_enable_gtk_deprecation_warnings="${enableval}"],[])
 
-#### When building with MinGW inside the MSYS tree, 'pwd' produces
-#### directories relative to the root of the MSYS tree,
-#### e.g. '/home/user/foo' instead of '/d/MSYS/home/user/foo'.  When
-#### such a value of srcdir is written to the top-level Makefile, it
-#### gets propagated to src/epaths.h, and that causes temacs to fail,
-#### because, being a MinGW program that knows nothing of MSYS root
-#### substitution, it cannot find the data directory.  "pwd -W"
-#### produces Windows-style 'd:/foo/bar' absolute directory names, so
-#### we use it here to countermand that lossage.
-test "$MSYSTEM" = "MINGW32" && abs_srcdir=`(cd "$abs_srcdir"; pwd -W | sed -e 
's,^\([[A-Za-z]]\):,/\1,')`
-
 ### Canonicalize the configuration name.
 
 AC_CANONICAL_HOST


reply via email to

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