Index: target/tar/tarroot.mk =================================================================== --- target/tar/tarroot.mk (revision 14782) +++ target/tar/tarroot.mk (working copy) @@ -5,7 +5,7 @@ ############################################################# TAR_OPTS:=$(strip $(BR2_TARGET_ROOTFS_TAR_OPTIONS)) -TAR_TARGET:=$(IMAGE).tar +TAR_TARGET:=$(notdir $(IMAGE).tar) tarroot: host-fakeroot makedevs -@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true; Index: target/squashfs/squashfsroot.mk =================================================================== --- target/squashfs/squashfsroot.mk (revision 14782) +++ target/squashfs/squashfsroot.mk (working copy) @@ -53,7 +53,7 @@ SQUASHFS_ENDIANNESS=-be endif -SQUASHFS_TARGET:=$(IMAGE).squashfs +SQUASHFS_TARGET:=$(notdir $(IMAGE).squashfs) squashfsroot: host-fakeroot makedevs squashfs -@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true; Index: target/cramfs/cramfs.mk =================================================================== --- target/cramfs/cramfs.mk (revision 14782) +++ target/cramfs/cramfs.mk (working copy) @@ -58,7 +58,7 @@ CRAMFS_ENDIANNESS=-b endif -CRAMFS_TARGET=$(IMAGE).cramfs +CRAMFS_TARGET=$(notdir $(IMAGE).cramfs) cramfsroot: host-fakeroot makedevs cramfs #-@find $(TARGET_DIR)/lib -type f -name \*.so\* | xargs $(STRIP) --strip-unneeded 2>/dev/null || true;