From: Eli Zaretskii Date: Thu, 28 Nov 2013 17:45:26 +0000 (+0200) Subject: Remove left-overs from using nt/mingw-cfg.site as a CONFIG_SITE file. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~663 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=16555151e0051faad2838505e80fcbd1f744cb9e;p=emacs.git Remove left-overs from using nt/mingw-cfg.site as a CONFIG_SITE file. GNUmakefile (Makefile): Don't use $(CFG). (CFG): Don't compute. --- diff --git a/ChangeLog b/ChangeLog index 092f7e58128..81ce30efede 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2013-11-28 Eli Zaretskii + * GNUmakefile (Makefile): Don't use $(CFG). + (CFG): Don't compute. + * configure.ac (PATH_SEP): Set and AC_SUBST. 2013-11-27 Paul Eggert diff --git a/GNUmakefile b/GNUmakefile index 25c586d8356..856b47ca992 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -32,12 +32,6 @@ # 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