Browse Source

Use "include_config" not "include-config"

Eric Andersen 22 years ago
parent
commit
772cb310c5
2 changed files with 4 additions and 4 deletions
  1. 3 3
      Makefile
  2. 1 1
      Rules.mak

+ 3 - 3
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
 

+ 1 - 1
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