Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archiso
diff options
context:
space:
mode:
authornl6720 <nl6720@gmail.com>2021-09-05 12:20:56 +0300
committernl6720 <nl6720@gmail.com>2021-11-02 20:57:47 +0200
commitf8862c26219774e7e900d2464dd0ff51cbbd6311 (patch)
treeb556f1b6f7f4a30c022bb3de9232ebb3a74af585 /archiso
parenta37c320a34b6a32a31f338e2f9b504ef46365c9c (diff)
mkarchiso: replace external date command with printf
printf is a bash builtin, so by using it an external command can be avoided. Due to the differences between date(1) and strftime(3), the time zone output will not contain a colon anymore. Fortunately, that is still a supported format according to https://en.wikipedia.org/wiki/ISO_8601#Time_offsets_from_UTC .
Diffstat (limited to 'archiso')
-rwxr-xr-xarchiso/mkarchiso5
1 files changed, 3 insertions, 2 deletions
diff --git a/archiso/mkarchiso b/archiso/mkarchiso
index 6181af2..9a310c7 100755
--- a/archiso/mkarchiso
+++ b/archiso/mkarchiso
@@ -7,7 +7,8 @@ set -e -u
# Control the environment
umask 0022
export LC_ALL="C"
-export SOURCE_DATE_EPOCH="${SOURCE_DATE_EPOCH:-"$(date +%s)"}"
+[[ -v SOURCE_DATE_EPOCH ]] || printf -v SOURCE_DATE_EPOCH '%(%s)T' -1
+export SOURCE_DATE_EPOCH
# Set application name from the script's file name
app_name="${0##*/}"
@@ -113,7 +114,7 @@ ENDUSAGETEXT
# Shows configuration options.
_show_config() {
local build_date
- build_date="$(date --utc --iso-8601=seconds -d "@${SOURCE_DATE_EPOCH}")"
+ printf -v build_date '%(%FT%R%z)T' "${SOURCE_DATE_EPOCH}"
_msg_info "${app_name} configuration settings"
_msg_info " Architecture: ${arch}"
_msg_info " Working directory: ${work_dir}"