summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile10
-rwxr-xr-xsetup.sh2
2 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index e5167cd..32a59a8 100644
--- a/Makefile
+++ b/Makefile
@@ -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
diff --git a/setup.sh b/setup.sh
index 39b4e08..7efb951 100755
--- a/setup.sh
+++ b/setup.sh
@@ -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