diff options
-rw-r--r-- | Makefile | 10 | ||||
-rwxr-xr-x | setup.sh | 2 |
2 files changed, 6 insertions, 6 deletions
@@ -9,15 +9,15 @@ CONVERT ?= convert APNGASM ?= apngasm UGLIFYJS ?= uglifyjs ifdef MINIMAL -ZOPFLIPNG ?= zopflipng -DEFLOPT ?= wine DeflOpt -DEFLUFF ?= defluff -PNGQUANT ?= pngquant -else ZOPFLIPNG ?= : DEFLOPT ?= : DEFLUFF ?= : PNGQUANT ?= : +else +ZOPFLIPNG ?= zopflipng +DEFLOPT ?= wine DeflOpt +DEFLUFF ?= defluff +PNGQUANT ?= pngquant endif DUMP ?= www/dump @@ -3,7 +3,7 @@ if [ -z $MAKEOPTS ]; then MAKEOPTS="-j`nproc`" echo "No MAKEOPTS specified, setting $MAKEOPTS automatically." - printf "%siB free, approx 1GiB/core required (depending on ffmpeg settings)." "$(free -ht | tail -n 1 | awk '{print $4}')" + printf "%sGiB free RAM, approx 1GiB/core required (depending on ffmpeg settings)." "$(free -gt | tail -n 1 | awk '{print $4}')" fi set -e -x |