summaryrefslogtreecommitdiff
path: root/GNUmakefile
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2013-11-28 19:45:26 +0200
committerEli Zaretskii <eliz@gnu.org>2013-11-28 19:45:26 +0200
commit16555151e0051faad2838505e80fcbd1f744cb9e (patch)
treea4db3879acc3dd707be909b7aa0efd0792dfd1ce /GNUmakefile
parentf7ec0d94d08bdd035ae710e338fd0839595b0087 (diff)
downloademacs-16555151e0051faad2838505e80fcbd1f744cb9e.tar.gz
Remove left-overs from using nt/mingw-cfg.site as a CONFIG_SITE file.
GNUmakefile (Makefile): Don't use $(CFG). (CFG): Don't compute.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile8
1 files changed, 1 insertions, 7 deletions
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