Browse Source

fix usage of makefile.unix

Steffen Jaeckel 8 years ago
parent
commit
9baba0a83a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scan_build.sh

+ 1 - 1
scan_build.sh

@@ -9,4 +9,4 @@ make clean > /dev/null
 scan_build=$(which scan-build)
 [ -z "$scan_build" ] && scan_build=$(find /usr/bin/ -name 'scan-build-*' | sort -nr | head -n1) || true
 [ -z "$scan_build" ] && { echo "couldn't find clang scan-build"; exit 1; } || true
-$scan_build make -f makefile.unix all
+$scan_build make -f makefile.unix all CFLAGS="" EXTRALIBS=""