summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-11-03 13:22:00 +0000
committerEric Andersen <andersen@codepoet.org>2002-11-03 13:22:00 +0000
commit772cb310c5745ea7de140ecdea3fd1edb2c964c6 (patch)
tree9e28692c1a77cc2bc42a35f2b8a724f94f911bc3
parent460a56b3c30d129bce4e0d95d4fd80b234079ed7 (diff)
Use "include_config" not "include-config"
-rw-r--r--Makefile6
-rw-r--r--Rules.mak2
2 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index a23e5727a..6b1a7dfbb 100644
--- a/Makefile
+++ b/Makefile
@@ -34,7 +34,7 @@ include Rules.mak
DIRS = extra ldso libc libcrypt libresolv libutil libm libpthread
-ifdef include-config
+ifdef include_config
all: headers subdirs shared utils finished
@@ -277,7 +277,7 @@ finished2:
@echo Finished installing...
@echo
-else # ifdef include-config
+else # ifdef include_config
all: menuconfig
@@ -372,7 +372,7 @@ release: distclean
tar -cvzf uClibc-$(VERSION).tar.gz --exclude CVS uClibc-$(VERSION)/;
endif # ifeq ($(filter-out $(noconfig_targets),$(MAKECMDGOALS)),)
-endif # ifdef include-config
+endif # ifdef include_config
.PHONY: dummy subdirs release distclean clean config oldconfig menuconfig
diff --git a/Rules.mak b/Rules.mak
index e95c88eae..bdcd163cf 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -52,7 +52,7 @@ LIBGCC:=$(shell $(CC) $(LIBGCC_CFLAGS) -print-libgcc-file-name)
# Pull in the user's uClibc configuration
ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
-include-config := 1
+include_config := 1
-include $(TOPDIR).config
endif