diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-10-22 01:35:32 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-10-22 01:35:32 +0000 |
commit | 991a35c6a621a3b03a0a6de6aa3045b951a7b627 (patch) | |
tree | d3a52dce0edb692c3e9e50596cedd00fb48648b3 /target | |
parent | 97d2d1f90fe0a81fe6615c7e87f21cf6f26af4ca (diff) | |
download | upstream-991a35c6a621a3b03a0a6de6aa3045b951a7b627.tar.gz upstream-991a35c6a621a3b03a0a6de6aa3045b951a7b627.tar.bz2 upstream-991a35c6a621a3b03a0a6de6aa3045b951a7b627.zip |
imagebuilder: accept empty profile names, some targets do not define profiles (thx, patrick)
SVN-Revision: 18117
Diffstat (limited to 'target')
-rw-r--r-- | target/imagebuilder/files/Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/target/imagebuilder/files/Makefile b/target/imagebuilder/files/Makefile index e003a32f2d..fe503118b0 100644 --- a/target/imagebuilder/files/Makefile +++ b/target/imagebuilder/files/Makefile @@ -86,12 +86,7 @@ BUILD_PACKAGES:=$(sort $(DEFAULT_PACKAGES) $($(PROFILE)_PACKAGES) kernel) BUILD_PACKAGES:=$(filter-out $(filter -%,$(BUILD_PACKAGES)) $(patsubst -%,%,$(filter -%,$(BUILD_PACKAGES))),$(BUILD_PACKAGES)) image: - if [ -z "$($(PROFILE)_NAME)" ]; then \ - echo Profile $(PROFILE) not found.; \ - echo 'Use "make info" to get a list of available target profiles'; \ - false; \ - fi - echo 'Building images for $(BOARD) - $($(PROFILE)_NAME)' + echo 'Building images for $(BOARD)$(if $($(PROFILE)_NAME), - $($(PROFILE)_NAME))' echo 'Packages: $(BUILD_PACKAGES)' echo rm -rf $(TARGET_DIR) |