scripts/get_aubio.sh: clean-up
[vamp-aubio-plugins.git] / scripts / get_aubio.sh
index 72a0539..d3a5a71 100755 (executable)
@@ -3,8 +3,6 @@
 set -e
 set -x
 
-which cl.exe && WAFOPTS='--msvc_version="msvc 12.0" --msvc_target="x86"'
-
 mkdir -p contrib
 pushd contrib
 git clone https://github.com/aubio/aubio aubio || ( pushd aubio; git pull; popd )
@@ -13,7 +11,7 @@ git clone https://github.com/aubio/aubio aubio || ( pushd aubio; git pull; popd
 pushd aubio
 ./scripts/get_waf.sh
 #./waf distclean
-./waf configure --prefix=$PWD/../aubio-dist --disable-atlas $WAFOPTS
+./waf configure --prefix=$PWD/../aubio-dist $WAFOPTS
 ./waf build -v
 ./waf install -v
 popd