From: Gustavo Zacarias Date: Thu, 6 Mar 2014 20:55:35 +0000 (-0300) Subject: fs/iso9660: fix iso9660 support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7ffd8642da498aea902f3c2403f066b99e7b6b23;p=buildroot.git fs/iso9660: fix iso9660 support Similar to the "fs/initramfs: fix initramfs support" commit the same problem applies to iso9660 in a different way. By adding iso9660 to TARGETS it gets called before target-finalize with obvious consequences. Signed-off-by: Gustavo Zacarias Signed-off-by: Thomas Petazzoni --- diff --git a/fs/iso9660/iso9660.mk b/fs/iso9660/iso9660.mk index a6a9c9528d..6c8ace0418 100644 --- a/fs/iso9660/iso9660.mk +++ b/fs/iso9660/iso9660.mk @@ -47,5 +47,5 @@ rootfs-iso9660: $(BINARIES_DIR)/rootfs.iso9660 # ################################################################################ ifeq ($(BR2_TARGET_ROOTFS_ISO9660),y) -TARGETS += rootfs-iso9660 +TARGETS_ROOTFS += rootfs-iso9660 endif