From: Glenn Morris Date: Wed, 23 Oct 2013 22:33:08 +0000 (-0400) Subject: * Makefile.in (epaths-force-w32): Use abs_srcdir X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1167 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4b56b9d7038bbb446697ecd6f2d4c2fe66f173e2;p=emacs.git * Makefile.in (epaths-force-w32): Use abs_srcdir --- diff --git a/ChangeLog b/ChangeLog index a57b88a89c7..e7df2d1c0d2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -13,7 +13,7 @@ Make building in directories with whitespace possible. (Bug#15675) * configure.ac (srcdir): Don't make it absolute - abs_srcdir exists. * Makefile.in (abs_srcdir): New, set by configure. - (buildlisppath): Use abs_srcdir. + (buildlisppath, epaths-force-w32): Use abs_srcdir. (install-arch-indep, install-etcdoc, install-info, install-man) (install-etc): Quote entities that might contain whitespace. diff --git a/Makefile.in b/Makefile.in index f97b03b99e0..7ad0bf13ae4 100644 --- a/Makefile.in +++ b/Makefile.in @@ -341,7 +341,7 @@ msys_sed_sh_escape=sed -e 's/[];$$*.^[]/\\\\&/g' # Use the value of ${locallisppath} supplied by `configure', # to support the --enable-locallisppath argument. epaths-force-w32: FRC - @(w32srcdir=`echo "${srcdir}" | ${msys_to_w32}` ; \ + @(w32srcdir=`echo "${abs_srcdir}" | ${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.$$$$ \