kconfig/Makefile
changeset 37 21bcbfde8094
parent 18 cc2869cc3121
child 54 7498a8d4b6e5
     1.1 --- a/kconfig/Makefile	Sun Mar 11 16:14:06 2007 +0000
     1.2 +++ b/kconfig/Makefile	Wed Apr 11 21:26:03 2007 +0000
     1.3 @@ -7,6 +7,11 @@
     1.4  PHONY += clean help oldconfig menuconfig config silentoldconfig \
     1.5  	randconfig allyesconfig allnoconfig allmodconfig defconfig
     1.6  
     1.7 +# Darwin (MacOS-X) does not have proper libintl support
     1.8 +ifeq ($(shell uname -s),Darwin)
     1.9 +KBUILD_NO_NLS:=1
    1.10 +endif
    1.11 +
    1.12  ifneq ($(KBUILD_NO_NLS),)
    1.13  CFLAGS += -DKBUILD_NO_NLS
    1.14  endif
    1.15 @@ -31,9 +36,9 @@
    1.16  # Help text used by make help
    1.17  help::
    1.18  	@echo  'General purpose configuration targets:'
    1.19 -	@echo  '  config	  - Update current config using a line-oriented program'
    1.20 -	@echo  '  menuconfig	  - Update current config using a menu based program'
    1.21 -	@echo  '  oldconfig	  - Update current config using a provided .config as base'
    1.22 +	@echo  '  config         - Update current config using a line-oriented program'
    1.23 +	@echo  '  menuconfig     - Update current config using a menu based program'
    1.24 +	@echo  '  oldconfig      - Update current config using a provided .config as base'
    1.25  	@echo
    1.26  	@echo  'Preconfigured configuration targets:'
    1.27  	@for s in $(SAMPLES_CONFIG); do   \