Skip to content
Snippets Groups Projects
Commit 0316b9df authored by Oliver Bock's avatar Oliver Bock
Browse files

Some more minor fixes

parent a48d08b7
No related branches found
No related tags found
No related merge requests found
...@@ -416,7 +416,7 @@ build_starsphere() ...@@ -416,7 +416,7 @@ build_starsphere()
export ORC_INSTALL=$ROOT/install || failure export ORC_INSTALL=$ROOT/install || failure
cd $ROOT/build/orc || failure cd $ROOT/build/orc || failure
cp $ROOT/src/orc/Makefile . >> $LOGFILE 2>&1 || failure cp $ROOT/src/orc/Makefile . >> $LOGFILE 2>&1 || failure
make $1 >> $LOGFILE 2>&1 || failure make $2 >> $LOGFILE 2>&1 || failure
make install >> $LOGFILE 2>&1 || failure make install >> $LOGFILE 2>&1 || failure
echo "Successfully built and installed Starsphere [ORC]!" | tee -a $LOGFILE echo "Successfully built and installed Starsphere [ORC]!" | tee -a $LOGFILE
...@@ -436,7 +436,7 @@ build_starsphere() ...@@ -436,7 +436,7 @@ build_starsphere()
else else
cp -f $ROOT/src/framework/Makefile . >> $LOGFILE 2>&1 || failure cp -f $ROOT/src/framework/Makefile . >> $LOGFILE 2>&1 || failure
fi fi
make $1 >> $LOGFILE 2>&1 || failure make $2 >> $LOGFILE 2>&1 || failure
make install >> $LOGFILE 2>&1 || failure make install >> $LOGFILE 2>&1 || failure
echo "Successfully built and installed Starsphere [Framework]!" | tee -a $LOGFILE echo "Successfully built and installed Starsphere [Framework]!" | tee -a $LOGFILE
...@@ -483,7 +483,7 @@ build_win32() ...@@ -483,7 +483,7 @@ build_win32()
prepare_win32 || failure prepare_win32 || failure
build_mingw || failure build_mingw || failure
build_generic_win32 || failure build_generic_win32 || failure
build_starsphere $TARGET_WIN32 build_starsphere $TARGET_WIN32 || failure
return 0 return 0
} }
...@@ -590,7 +590,7 @@ case "$1" in ...@@ -590,7 +590,7 @@ case "$1" in
"--starsphere") "--starsphere")
# "hidden" bonus option :-) # "hidden" bonus option :-)
TARGET=$TARGET_LINUX TARGET=$TARGET_LINUX
build_starsphere "" "debug" || failure build_starsphere $TARGET "debug" || failure
exit 0 exit 0
;; ;;
*) *)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment