diff options
author | Paul Spooren <mail@aparcar.org> | 2021-05-13 23:57:45 +0200 |
---|---|---|
committer | Paul Spooren <mail@aparcar.org> | 2021-05-19 00:32:46 +0200 |
commit | a725382978515abfb2eb7be3bafef735dca97dbd (patch) | |
tree | 915b2049cfdff4610be6c925b33e37496cdd915d /package/utils/busybox/Makefile | |
parent | f716c30241d5fd9d821560f58d0af0c3ffe78600 (diff) | |
download | upstream-a725382978515abfb2eb7be3bafef735dca97dbd.tar.gz upstream-a725382978515abfb2eb7be3bafef735dca97dbd.tar.bz2 upstream-a725382978515abfb2eb7be3bafef735dca97dbd.zip |
busybox: show reproducible timestamp
On login busybox shows a timestamp per default contianing the build
date. Since the build date isn't reproducible per default this behaviour
was disabled by default via 34df4d40 "busybox: disable timestamp in
version".
This commit modifies busybox so that the printed timestamp reproducible
using SOURCE_DATE_EPOCH and therefore shouldn't be disabled anymore.
Before:
BusyBox v1.33.1 () built-in shell (ash)
After:
BusyBox v1.33.1 (2021-05-13 09:34:34 UTC) built-in shell (ash)
Signed-off-by: Paul Spooren <mail@aparcar.org>
Diffstat (limited to 'package/utils/busybox/Makefile')
-rw-r--r-- | package/utils/busybox/Makefile | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/package/utils/busybox/Makefile b/package/utils/busybox/Makefile index 242a2428ac..e4e176870c 100644 --- a/package/utils/busybox/Makefile +++ b/package/utils/busybox/Makefile @@ -81,10 +81,6 @@ endef Package/busybox-selinux/conffiles = $(Package/busybox/conffiles) endif -# don't create a version string containing the actual timestamp -export KCONFIG_NOTIMESTAMP=1 - - ifndef CONFIG_USE_MUSL LDLIBS:=m crypt endif |