diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-04-07 11:03:05 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-04-07 11:03:05 +0000 |
commit | 5305aba54930edb219ac2111811134a16e28978e (patch) | |
tree | d236c64df56a270968499dbd6d85afc0cdca1cc5 /Makefile | |
parent | 74c927577d0c7aac96fe8f034913423b4be56a0d (diff) | |
download | mtk-20170518-5305aba54930edb219ac2111811134a16e28978e.zip mtk-20170518-5305aba54930edb219ac2111811134a16e28978e.tar.gz mtk-20170518-5305aba54930edb219ac2111811134a16e28978e.tar.bz2 |
fix menuconfig
SVN-Revision: 6881
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -90,9 +90,9 @@ oldconfig: scripts/config/conf tmp/.config-target.in tmp/.config-package.in FORC $< -o Config.in menuconfig: scripts/config/mconf tmp/.config-target.in tmp/.config-package.in FORCE - @[ -f .config ] || { \ - [ -e $(HOME)/.openwrt/defconfig ] && cp $(HOME)/.openwrt/defconfig .config; \ - } + @if [ \! -f .config -a -e $(HOME)/.openwrt/defconfig ]; then \ + cp $(HOME)/.openwrt/defconfig .config; \ + fi $< Config.in kernel_menuconfig: .config FORCE |