diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-02-26 01:55:34 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-02-26 01:55:34 -0800 |
commit | 3901ec23c0be871e544c03a61d2efc8789456e60 (patch) | |
tree | 5a57e608614701446804fc704d29c3c7c7e0e81a /build_release | |
parent | 2bfd55e403f2bfcf340cfa220145260c24925c25 (diff) |
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
Diffstat (limited to 'build_release')
-rwxr-xr-x | build_release | 4 |
1 files 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 |