base-files: fix argument order to date in sysfixtime so that it also works with musl
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 7 Jun 2014 16:14:47 +0000 (16:14 +0000)
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 7 Jun 2014 16:14:47 +0000 (16:14 +0000)
Seems like the reverse order relies on GNU specific getopt hackery which
musl does not replicate

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41045 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/base-files/files/etc/init.d/sysfixtime

index ca19e78..4010e06 100755 (executable)
@@ -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
 }