From 3901ec23c0be871e544c03a61d2efc8789456e60 Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Sun, 26 Feb 2017 01:55:34 -0800 Subject: Remove clean step from SDL and glew dependencies in release_build script. Should not be needed now that each build type will have it's own environment --- build_release | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_release b/build_release index 185c102..cb85c39 100755 --- a/build_release +++ b/build_release @@ -9,7 +9,7 @@ fi if [ $OS = "Linux" ]; then cd sdl ./configure - make clean all + make all cd .. rm -rf lib mkdir lib @@ -21,7 +21,7 @@ if [ $OS = "Linux" ]; then ln -s "$sdl" libSDL2.so cd .. cd glew - make clean all + make all cd .. fi -- cgit v1.2.3