1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-25 07:28:20 +00:00

Remove left-overs from using nt/mingw-cfg.site as a CONFIG_SITE file.

GNUmakefile (Makefile): Don't use $(CFG).
 (CFG): Don't compute.
This commit is contained in:
Eli Zaretskii 2013-11-28 19:45:26 +02:00
parent f7ec0d94d0
commit 16555151e0
2 changed files with 4 additions and 7 deletions

View File

@ -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>

View File

@ -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