summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-06-07 16:14:47 +0000
committerFelix Fietkau <nbd@openwrt.org>2014-06-07 16:14:47 +0000
commit281f4158858d202a0b5d63e145e7f1e927266587 (patch)
tree8c19d02cff4dfca1f24661fd4cadfb8d32afa616
parent6b7ee130940c1177077105c641c72f2908cc4303 (diff)
downloadmaster-31e0f0ae-281f4158858d202a0b5d63e145e7f1e927266587.tar.gz
master-31e0f0ae-281f4158858d202a0b5d63e145e7f1e927266587.tar.bz2
master-31e0f0ae-281f4158858d202a0b5d63e145e7f1e927266587.zip
base-files: fix argument order to date in sysfixtime so that it also works with musl
Seems like the reverse order relies on GNU specific getopt hackery which musl does not replicate Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 41045
-rwxr-xr-xpackage/base-files/files/etc/init.d/sysfixtime2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/etc/init.d/sysfixtime b/package/base-files/files/etc/init.d/sysfixtime
index ca19e78e02..4010e06f93 100755
--- a/package/base-files/files/etc/init.d/sysfixtime
+++ b/package/base-files/files/etc/init.d/sysfixtime
@@ -5,7 +5,7 @@ START=00
boot() {
local curtime="$(date +%s)"
- local maxtime="$(find /etc -type f -exec date +%s -r {} \; | sort -nr | head -n1)"
+ local maxtime="$(find /etc -type f -exec date -r {} +%s \; | sort -nr | head -n1)"
[ $curtime -lt $maxtime ] && date -s @$maxtime
}