Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
escape flags
  • Loading branch information
Soeren Sonnenburg committed Jul 19, 2012
1 parent fa6ce12 commit 2442926
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/undocumented/libshogun/check.sh
Expand Up @@ -13,7 +13,7 @@ test -z "$MAKE" && MAKE="make"
for e in `$MAKE print_targets | grep -v ^make`
do
echo -n "running $e .."
if $MAKE "$e" $CC $LIBRARY_PATH $LIB_PATH $INC_PATH $LIBS $INCLUDES >/dev/null 2>&1 && "./$e" >/dev/null 2>&1
if $MAKE "$e" "$CC" "$LIBRARY_PATH" "$LIB_PATH" "$INC_PATH" "$LIBS" "$INCLUDES" >/dev/null 2>&1 && "./$e" >/dev/null 2>&1
then
echo " OK"
else
Expand All @@ -22,7 +22,7 @@ do
echo "error in $MAKE $e $CC $LIBRARY_PATH $LIB_PATH $INC_PATH $LIBS" >>error.log
echo "error in ./$e" >>error.log 2>&1
echo "================================================================================" >>error.log
$MAKE "$e" $CC $LIBRARY_PATH $LIB_PATH $INC_PATH $LIBS >>error.log 2>&1 && "./$e" >>error.log
$MAKE "$e" "$CC" "$LIBRARY_PATH" "$LIB_PATH" "$INC_PATH" "$LIBS" >>error.log 2>&1 && "./$e" >>error.log
echo "================================================================================" >>error.log
echo >>error.log
echo >>error.log
Expand Down

0 comments on commit 2442926

Please sign in to comment.