diff --git a/android-wrapped-clang b/android-wrapped-clang index abcc3f8..d72c49f 100755 --- a/android-wrapped-clang +++ b/android-wrapped-clang @@ -5,6 +5,6 @@ if [ "$1" = "--version" ]; then echo "This is free software; see the source for copying conditions. There is NO" echo "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." else - theargs="${@/-fno-var-tracking-assignments/}" - exec $thecc "$theargs" + exec "${@/-fno-var-tracking-assignments/}" + # exec $thecc "$theargs" fi