From f9a4428876862007de2b69f3557ac9e983bf94ab Mon Sep 17 00:00:00 2001 From: luka Date: Sat, 12 Oct 2013 21:44:46 +0000 Subject: [PATCH] image: if possible use profile name when building .tar.gz images Signed-off-by: Luka Perkov git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38374 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- include/image.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/image.mk b/include/image.mk index e0731f0895..f5f1c8fb54 100644 --- a/include/image.mk +++ b/include/image.mk @@ -141,7 +141,7 @@ endif ifneq ($(CONFIG_TARGET_ROOTFS_TARGZ),) define Image/mkfs/targz # Preserve permissions (-p) when building as non-root user - $(TAR) -czpf $(BIN_DIR)/$(IMG_PREFIX)-rootfs.tar.gz --numeric-owner --owner=0 --group=0 -C $(TARGET_DIR)/ . + $(TAR) -czpf $(BIN_DIR)/$(IMG_PREFIX)$(if $(PROFILE),-$(PROFILE))-rootfs.tar.gz --numeric-owner --owner=0 --group=0 -C $(TARGET_DIR)/ . endef endif -- 2.11.0