From: Felix Fietkau Date: Mon, 16 Jul 2007 00:42:19 +0000 (+0000) Subject: don't run the image prereq check if the image directory does not exist X-Git-Url: https://git.archive.openwrt.org/?p=15.05%2Fopenwrt.git;a=commitdiff_plain;h=4ed6cbf000a5659e4e910f615f0358be23b5b735 don't run the image prereq check if the image directory does not exist git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7988 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/target/Makefile b/target/Makefile index a3b15b2659..4885ab98d3 100644 --- a/target/Makefile +++ b/target/Makefile @@ -33,7 +33,7 @@ clean: linux-clean sdk-clean imagebuilder-clean image_clean prereq: FORCE $(MAKE) -C linux/$(BOARD)-$(KERNEL) prereq - $(MAKE) -C $(IMAGE_DIR) prereq + [ \! -f $(IMAGE_DIR)/Makefile ] || $(MAKE) -C $(IMAGE_DIR) prereq sdk_install: FORCE $(MAKE) -C sdk install