summaryrefslogtreecommitdiff
path: root/backport/Makefile.real
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2013-05-23 16:12:27 +0200
committerLuis R. Rodriguez <mcgrof@do-not-panic.com>2013-05-28 11:49:42 -0700
commit246fbc843420d302989661f115c70bb12fbd46f4 (patch)
treee55b3d483813a48acec36b622cdf4acd6d8a93d8 /backport/Makefile.real
parent2278be52368c2f8b55c361b4329494349437c651 (diff)
backport: move kconfig code to "kconf" directory
Having the kconfig code in a directory called "kconfig" and having a file called "Kconfig" causes issues if the code is ever stored on a case-insensitive filesystem. Avoid these by just calling the kconfig directory kconf instead. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Luis R. Rodriguez <mcgrof@do-not-panic.com>
Diffstat (limited to 'backport/Makefile.real')
-rw-r--r--backport/Makefile.real16
1 files changed, 8 insertions, 8 deletions
diff --git a/backport/Makefile.real b/backport/Makefile.real
index 22a13738..2a1f640f 100644
--- a/backport/Makefile.real
+++ b/backport/Makefile.real
@@ -13,8 +13,8 @@ export CONFIG_=CPTCFG_
.PHONY: menuconfig
menuconfig:
- @$(MAKE) -C kconfig mconf
- @./kconfig/mconf Kconfig
+ @$(MAKE) -C kconf mconf
+ @./kconf/mconf Kconfig
.PHONY: listnewconfig oldaskconfig oldconfig \
silentoldconfig olddefconfig oldnoconfig \
@@ -24,17 +24,17 @@ listnewconfig oldaskconfig oldconfig \
silentoldconfig olddefconfig oldnoconfig \
allnoconfig allyesconfig allmodconfig \
alldefconfig randconfig:
- @$(MAKE) -C kconfig conf
- @./kconfig/conf --$@ Kconfig
+ @$(MAKE) -C kconf conf
+ @./kconf/conf --$@ Kconfig
.PHONY: usedefconfig
usedefconfig:
- @$(MAKE) -C kconfig conf
- @./kconfig/conf --defconfig=defconfig Kconfig
+ @$(MAKE) -C kconf conf
+ @./kconf/conf --defconfig=defconfig Kconfig
defconfig-%::
- @$(MAKE) -C kconfig conf
- @./kconfig/conf --defconfig=defconfigs/$(@:defconfig-%=%) Kconfig
+ @$(MAKE) -C kconf conf
+ @./kconf/conf --defconfig=defconfigs/$(@:defconfig-%=%) Kconfig
.config:
@test -f defconfig && $(MAKE) usedefconfig || ( \