diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-01-14 23:49:23 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-01-14 23:49:23 +0000 |
commit | 7cb45c3be851b1f8e8c97c4e39794371e5913b63 (patch) | |
tree | 57735c4c555ffd00c5de45865cd6267079842605 | |
parent | 351d0d4b07fe39e6fad5d14fc18f176298a96143 (diff) | |
download | upstream-7cb45c3be851b1f8e8c97c4e39794371e5913b63.tar.gz upstream-7cb45c3be851b1f8e8c97c4e39794371e5913b63.tar.bz2 upstream-7cb45c3be851b1f8e8c97c4e39794371e5913b63.zip |
show package list on make info in the image builder
SVN-Revision: 6103
-rw-r--r-- | target/imagebuilder/files/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/imagebuilder/files/Makefile b/target/imagebuilder/files/Makefile index 5f999837d8..fbcfa0d49a 100644 --- a/target/imagebuilder/files/Makefile +++ b/target/imagebuilder/files/Makefile @@ -47,7 +47,7 @@ define Profile $(ID)_NAME:=$(NAME) $(ID)_PACKAGES:=$(PACKAGES) PROFILE_LIST += \ - echo '$(ID):'; echo ' $(NAME)'; + echo '$(ID):'; [ -z '$(NAME)' ] || echo ' $(NAME)'; echo ' Packages: $(PACKAGES)'; endif endef |