changeset 1239:cd9c1acb0053

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
author Michael Pavone <pavone@retrodev.com>
date Sun, 26 Feb 2017 01:55:34 -0800
parents 8c34d195df01
children c63516b6824a
files build_release
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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