]> Git Repo - buildroot-mgba.git/commitdiff
fs/iso9660: fix non-reproducible builds
authorYann E. MORIN <[email protected]>
Tue, 28 Sep 2021 05:24:31 +0000 (07:24 +0200)
committerYann E. MORIN <[email protected]>
Tue, 28 Sep 2021 05:24:31 +0000 (07:24 +0200)
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 <[email protected]>
fs/iso9660/iso9660.mk

index 27319b024bf087f2f30815d959cce1c4254ab9ce..faa15833c26751d3ddc9b11a8648a521be246f79 100644 (file)
@@ -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)
This page took 0.034071 seconds and 4 git commands to generate.