diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-01-31 23:28:55 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-01-31 23:28:55 +0000 |
commit | 2f14514a12f708fecbe786e028fb9e3c542907da (patch) | |
tree | 53bf82ff9144ec1cb06112ab154a65aca98a8c3f /scripts/portable_date.sh | |
parent | 7695d614df8c4877c081de737e56eee8cacddbd8 (diff) | |
download | mtk-20170518-2f14514a12f708fecbe786e028fb9e3c542907da.zip mtk-20170518-2f14514a12f708fecbe786e028fb9e3c542907da.tar.gz mtk-20170518-2f14514a12f708fecbe786e028fb9e3c542907da.tar.bz2 |
add scripts/portable_date: wrapper around date for bsd/linux
date -r $unix_timestamp on bsd is equal to date -d @$unix_timestamp on
linux. To support reproducible builds and not loosing every timestamp
it's required to convert a unix timestamp into human readable timestamp
./scripts/portable_date $unix_timstamp +%T
Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
SVN-Revision: 48583
Diffstat (limited to 'scripts/portable_date.sh')
-rwxr-xr-x | scripts/portable_date.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/portable_date.sh b/scripts/portable_date.sh new file mode 100755 index 0000000..84a18eb --- /dev/null +++ b/scripts/portable_date.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +case $(uname) in + NetBSD|OpenBSD|DragonFly|FreeBSD|Darwin) + date -r $1 $2 + ;; + *) + date -d @$1 $2 +esac + +exit $? |