]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove left-overs from using nt/mingw-cfg.site as a CONFIG_SITE file.
authorEli Zaretskii <eliz@gnu.org>
Thu, 28 Nov 2013 17:45:26 +0000 (19:45 +0200)
committerEli Zaretskii <eliz@gnu.org>
Thu, 28 Nov 2013 17:45:26 +0000 (19:45 +0200)
 GNUmakefile (Makefile): Don't use $(CFG).
 (CFG): Don't compute.

ChangeLog
GNUmakefile

index 092f7e5812819ef9d26bac8e485e5e811b50d850..81ce30efede04f9e8a5c042f329bec12d887f48a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2013-11-28  Eli Zaretskii  <eliz@gnu.org>
 
+       * GNUmakefile (Makefile): Don't use $(CFG).
+       (CFG): Don't compute.
+
        * configure.ac (PATH_SEP): Set and AC_SUBST.
 
 2013-11-27  Paul Eggert  <eggert@cs.ucla.edu>
index 25c586d8356d6b5597928f5a42868f07b41d41e9..856b47ca992a1efb5f89ec429fab6b7329a95b0a 100644 (file)
 # run "configure" by hand.  But run autogen.sh first, if the source
 # was checked out directly from the repository.
 
-ifneq ($(MSYSTEM),)
-CFG = CONFIG_SITE=$(CURDIR)/nt/mingw-cfg.site
-else
-CFG =
-endif
-
 # If a Makefile already exists, just use it.
 
 ifeq ($(wildcard Makefile),Makefile)
@@ -75,7 +69,7 @@ configure:
 Makefile: configure
        @echo >&2 'There seems to be no Makefile in this directory.'
        @echo >&2 'Running ./configure ...'
-       $(CFG) ./configure
+       ./configure
        @echo >&2 'Makefile built.'
 
 endif