[Buildroot] [git commit] fs/iso9660: fix non-reproducible builds

Yann E. MORIN yann.morin.1998 at free.fr
Tue Sep 28 05:24:31 UTC 2021


commit: https://git.buildroot.net/buildroot/commit/?id=f8b17f74392bda34e55ad2202ebabc2cac06278d
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

In commit 179ae068eb70 (fs/iso9660: add support to Grub EFI bootloader
in the image), we did a last-minute change when applying the patch, on
the flawed assumption that the commands were run in a standard Makefile
rule.

However, for filesystems, most commands are run in a script (so they run
under fakeroot). As such, we can't silence the commands with the usual
Makefile '@' construct.

Signed-off-by: Yann E. MORIN <yann.morin.1998 at free.fr>
---
 fs/iso9660/iso9660.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/iso9660/iso9660.mk b/fs/iso9660/iso9660.mk
index 27319b024b..faa15833c2 100644
--- a/fs/iso9660/iso9660.mk
+++ b/fs/iso9660/iso9660.mk
@@ -61,7 +61,7 @@ ifeq ($(BR2_REPRODUCIBLE),y)
 ROOTFS_ISO9660_VFAT_OPTS = --invariant
 ROOTFS_ISO9660_FIX_TIME = touch -d @$(SOURCE_DATE_EPOCH)
 else
-ROOTFS_ISO9660_FIX_TIME = @:
+ROOTFS_ISO9660_FIX_TIME = :
 endif
 
 ifeq ($(BR2_TARGET_ROOTFS_ISO9660_GRUB2)$(BR2_TARGET_ROOTFS_ISO9660_BIOS_BOOTLOADER),yy)


More information about the buildroot mailing list