aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/portable_date.sh
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2016-02-01 10:33:15 +0000
committerFelix Fietkau <nbd@openwrt.org>2016-02-01 10:33:15 +0000
commit64ec9dc2a12d978dad0ffb2a508eb6a526c8f1e2 (patch)
treea946ed36b39d98137872d90dcee86650d71c6e62 /scripts/portable_date.sh
parentd9fab8760714b364c286bc37fc0de1d4006b29ff (diff)
downloadupstream-64ec9dc2a12d978dad0ffb2a508eb6a526c8f1e2.tar.gz
upstream-64ec9dc2a12d978dad0ffb2a508eb6a526c8f1e2.tar.bz2
upstream-64ec9dc2a12d978dad0ffb2a508eb6a526c8f1e2.zip
scripts/portable_date.sh: fix parsing of date strings on non-GNU systems
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 48592
Diffstat (limited to 'scripts/portable_date.sh')
-rwxr-xr-xscripts/portable_date.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/portable_date.sh b/scripts/portable_date.sh
index 84a18eb621..244f545a25 100755
--- a/scripts/portable_date.sh
+++ b/scripts/portable_date.sh
@@ -2,10 +2,10 @@
case $(uname) in
NetBSD|OpenBSD|DragonFly|FreeBSD|Darwin)
- date -r $1 $2
+ date -j -f "%Y-%m-%d %H:%M:%S %z" "$1" "$2" 2>/dev/null
;;
*)
- date -d @$1 $2
+ date -d "@$1" "$2"
esac
exit $?