diff options
author | Ralph Hempel <ralph.hempel@lantiq.com> | 2009-05-31 16:15:47 +0000 |
---|---|---|
committer | Ralph Hempel <ralph.hempel@lantiq.com> | 2009-05-31 16:15:47 +0000 |
commit | c360bce6a47b19a4fe8eb94d8381e779919ee0f6 (patch) | |
tree | 1a2b888a8a2a6a5ecaba24f1c5ba40fb384e0b0b /include | |
parent | ab98fd6b3be57ffc5fab08b341f7dc260a736987 (diff) | |
download | upstream-c360bce6a47b19a4fe8eb94d8381e779919ee0f6.tar.gz upstream-c360bce6a47b19a4fe8eb94d8381e779919ee0f6.tar.bz2 upstream-c360bce6a47b19a4fe8eb94d8381e779919ee0f6.zip |
fix typo
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16236 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r-- | include/target.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/target.mk b/include/target.mk index a554386cd8..7edd6f4187 100644 --- a/include/target.mk +++ b/include/target.mk @@ -120,8 +120,8 @@ ifeq ($(LINUX_CONFIG),$(LINUX_SUBCONFIG)) LINUX_SUBCONFIG:= endif LINUX_CONFCMD=$(if $(LINUX_CONFIG), \ - $(if $(GENERIC_LINUX_CONFIG),,$(error The generic kernel config for your kernel version is mising)) \ - $(if $(LINUX_CONFIG),,$(error The target kernel config for your kernel version is mising)) \ + $(if $(GENERIC_LINUX_CONFIG),,$(error The generic kernel config for your kernel version is missing)) \ + $(if $(LINUX_CONFIG),,$(error The target kernel config for your kernel version is missing)) \ $(SCRIPT_DIR)/kconfig.pl \ + $(GENERIC_LINUX_CONFIG) \ $(if $(LINUX_SUBCONFIG),+ $(LINUX_CONFIG) $(LINUX_SUBCONFIG),$(LINUX_CONFIG)), \ |