# HG changeset patch # User Michael Pavone # Date 1488102934 28800 # Node ID cd9c1acb0053fd65c49d92a3324c116fa18abacd # Parent 8c34d195df013cc136830544c32ac7c47f5a35be 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 diff -r 8c34d195df01 -r cd9c1acb0053 build_release --- a/build_release Sun Feb 26 01:46:39 2017 -0800 +++ b/build_release Sun Feb 26 01:55:34 2017 -0800 @@ -9,7 +9,7 @@ if [ $OS = "Linux" ]; then cd sdl ./configure - make clean all + make all cd .. rm -rf lib mkdir lib @@ -21,7 +21,7 @@ ln -s "$sdl" libSDL2.so cd .. cd glew - make clean all + make all cd .. fi