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
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
}