diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-02-25 19:26:26 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-02-25 19:26:26 +0100 |
commit | f7fb97a8e2160a791487f5a2cd9f744b04cf39bb (patch) | |
tree | eba7da9c4155c53e58cb2f202bdac39f2d3e8a44 | |
parent | 837de2988b8b5c97e42b91ffc8c59ea84102f42a (diff) |
always use .defconfig, otherwise make menuconfig and ADK_APPLIANCE does not work
-rw-r--r-- | mk/build.mk | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mk/build.mk b/mk/build.mk index 214c52e88..0e41b0002 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -458,9 +458,7 @@ endif |sed -e "s#^config \(.*\)#\1=y#" \ >> $(ADK_TOPDIR)/.defconfig; \ fi - @if [ ! -z "$(ADK_APPLIANCE)" ];then \ - $(CONFIG)/conf --defconfig=.defconfig $(CONFIG_CONFIG_IN); \ - fi + @$(CONFIG)/conf --defconfig=.defconfig $(CONFIG_CONFIG_IN) allconfig: ifeq (${OStype},Linux) |