scripts/portable_date.sh: fix parsing of date strings on non-GNU systems
[openwrt/staging/yousong.git] / scripts / ubinize-image.sh
index 6762c22bc4a6e27a149b36953dcb02c4796a7d52..b87cbb48dc8cc004d754e3b9c8001beb5f111393 100755 (executable)
@@ -98,7 +98,11 @@ if [ ! -x "$ubinize" ]; then
        exit 1
 fi
 
-ubinizecfg="$( mktemp )"
+ubinizecfg="$( mktemp 2> /dev/null )"
+if [ -z "$ubinizecfg" ]; then
+       # try OSX signature
+       ubinizecfg="$( mktemp -t 'ubitmp' )"
+fi
 ubilayout "$ubootenv" "$rootfs" "$kernel" > "$ubinizecfg"
 
 cat "$ubinizecfg"
@@ -108,4 +112,3 @@ err="$?"
 rm "$ubinizecfg"
 
 exit $err
-