Don't encode the current timestamp. This affects the output of `perl -V`, specifically the message "Compiled at [...]". The 'cf_time' and 'cf_by' values show up in 'config.h' and in 'Config_heavy.pl'. Use the output of 'uname -s' instead of 'uname -a' to avoid recording the kernel version ('uname -o' leads to directory names like 'x86_64-gnulinux' instead of 'x86_64-linux', which might cause breakage down the road.) diff --git a/perl.c b/perl.c index 228a0d8..ed38313 100644 --- a/perl.c +++ b/perl.c @@ -1825,6 +1825,7 @@ S_Internals_V(pTHX_ CV *cv) PUSHs(Perl_newSVpvn_flags(aTHX_ non_bincompat_options, sizeof(non_bincompat_options) - 1, SVs_TEMP)); +#define PERL_BUILD_DATE "Jan 1 1970 00:00:00" #ifndef PERL_BUILD_DATE # ifdef __DATE__ # ifdef __TIME__ --- a/Configure 1970-01-01 01:00:00.000000000 +0100 +++ b/Configure 2016-10-01 14:47:20.017319739 +0200 @@ -3276,7 +3276,7 @@ $eunicefix tr : Try to determine whether config.sh was made on this system case "$config_sh" in '') -myuname=`$uname -a 2>/dev/null` +myuname=`$uname -s 2>/dev/null` $test -z "$myuname" && myuname=`hostname 2>/dev/null` # Downcase everything to avoid ambiguity. # Remove slashes and single quotes so we can use parts of this in @@ -3845,10 +3845,10 @@ . ./posthint.sh : who configured the system -cf_time=`LC_ALL=C; LANGUAGE=C; export LC_ALL; export LANGUAGE; $date 2>&1` +cf_time="1970-01-01" case "$cf_by" in "") - cf_by=`(logname) 2>/dev/null` + cf_by="guix" case "$cf_by" in "") cf_by=`(whoami) 2>/dev/null` /a>
path: root/gnu/bootloader/depthcharge.scm
AgeCommit message (Expand)Author
2020-05-20bootloader: grub: Allow booting from a Btrfs subvolume....* gnu/bootloader/grub.scm (strip-mount-point): Remove procedure. (normalize-file): Add procedure. (grub-configuration-file): New BTRFS-SUBVOLUME-FILE-NAME parameter. When defined, prepend its value to the kernel and initrd file names, using the NORMALIZE-FILE procedure. Adjust the call to EYE-CANDY to pass the BTRFS-SUBVOLUME-FILE-NAME argument. Normalize the KEYMAP file as well. (eye-candy): Add a BTRFS-SUBVOLUME-FILE-NAME parameter, and use it, along with the NORMALIZE-FILE procedure, to normalize the FONT-FILE and IMAGE nested variables. Adjust doc. * gnu/bootloader/depthcharge.scm (depthcharge-configuration-file): Adapt. * gnu/bootloader/extlinux.scm (extlinux-configuration-file): Likewise. * gnu/system/file-systems.scm (btrfs-subvolume?) (btrfs-store-subvolume-file-name): New procedures. * gnu/system.scm (operating-system-bootcfg): Specify the Btrfs subvolume file name the store resides on to the `operating-system-bootcfg' procedure, using the new BTRFS-SUBVOLUME-FILE-NAME argument. * doc/guix.texi (File Systems): Add a Btrfs subsection to document the use of subvolumes. * gnu/tests/install.scm (%btrfs-root-on-subvolume-os) (%btrfs-root-on-subvolume-os-source) (%btrfs-root-on-subvolume-installation-script) (%test-btrfs-root-on-subvolume-os): New variables. Maxim Cournoyer