summaryrefslogtreecommitdiff
path: root/openwrt/target/linux
diff options
context:
space:
mode:
authorMike Baker <mbm@openwrt.org>2006-05-11 23:43:45 +0000
committerMike Baker <mbm@openwrt.org>2006-05-11 23:43:45 +0000
commit2f7773adbc1027c90e55d46fb92dd8e9ab6e09b8 (patch)
tree39bb85750fb67834c0a45334fa892c7dfcc95fa9 /openwrt/target/linux
parentc73e647148d663f3d3a82599901ca283d9981273 (diff)
downloadmtk-20170518-2f7773adbc1027c90e55d46fb92dd8e9ab6e09b8.zip
mtk-20170518-2f7773adbc1027c90e55d46fb92dd8e9ab6e09b8.tar.gz
mtk-20170518-2f7773adbc1027c90e55d46fb92dd8e9ab6e09b8.tar.bz2
BR2_ -> CONFIG_
SVN-Revision: 3766
Diffstat (limited to 'openwrt/target/linux')
-rw-r--r--openwrt/target/linux/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/openwrt/target/linux/Makefile b/openwrt/target/linux/Makefile
index 7922de9..d7744f5 100644
--- a/openwrt/target/linux/Makefile
+++ b/openwrt/target/linux/Makefile
@@ -31,7 +31,7 @@ $(1)/$(2)-install-ib:
echo '$$$$(eval $$$$(call image_template,$(2),$(1)))' >> $(IB_DIR)/kernel.mk
-ifeq ($(BR2_LINUX_$(3)),y)
+ifeq ($(CONFIG_LINUX_$(3)),y)
clean: $(1)/$(2)-clean
prepare: $(1)/$(2)-prepare
compile: $(1)/$(2)-compile
@@ -64,7 +64,7 @@ $(BIN_DIR)/$(IB_NAME).tar.bz2:
find $(IB_DIR) -name CVS | xargs rm -rf
(cd $(BUILD_DIR); tar c $(IB_NAME) | bzip2 -c > $(BIN_DIR)/$(IB_NAME).tar.bz2)
-ifeq ($(BR2_PACKAGE_IMAGEBUILDER),y)
+ifeq ($(CONFIG_PACKAGE_IMAGEBUILDER),y)
install: $(BIN_DIR)/$(IB_NAME).tar.bz2
endif