diff options
author | Mike Baker <mbm@openwrt.org> | 2006-05-11 23:43:45 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2006-05-11 23:43:45 +0000 |
commit | 39009d6886361eb88791da2f0ecaed6271f6feb5 (patch) | |
tree | 0fca0107baae521f99ce33d63e320418aa922445 /target/linux/Makefile | |
parent | 4a6cccf03c113b9a05151d302011b3b42dc5a705 (diff) | |
download | upstream-39009d6886361eb88791da2f0ecaed6271f6feb5.tar.gz upstream-39009d6886361eb88791da2f0ecaed6271f6feb5.tar.bz2 upstream-39009d6886361eb88791da2f0ecaed6271f6feb5.zip |
BR2_ -> CONFIG_
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3766 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/Makefile')
-rw-r--r-- | target/linux/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/Makefile b/target/linux/Makefile index 7922de9134..d7744f56e0 100644 --- a/target/linux/Makefile +++ b/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 |