AppRun didn't recognize files with spaces on them as parameters

master
Ismael Barros² 2014-07-31 18:43:18 +02:00
parent bb6c035f79
commit c6fbc81658
5 changed files with 5 additions and 5 deletions

View File

@ -21,7 +21,7 @@ setup_keepResolution
ret=0
{
"$BINARY" $BINARY_ARGS $@
"$BINARY" $BINARY_ARGS "$@"
ret=$?
} 2>&1 | tee "$LOGFILE"

View File

@ -22,7 +22,7 @@ ret=0
cd usr/
{
export RUNELF_HELPERS="$APPDIR/usr/lib/ld-linux.so.2"
run_withLocalLibs $APPRUN_HELPERS $RUNELF_HELPERS "$BINARY" $BINARY_ARGS $@
run_withLocalLibs $APPRUN_HELPERS $RUNELF_HELPERS "$BINARY" $BINARY_ARGS "$@"
ret=$?
} 2>&1 | tee "$LOGFILE"

View File

@ -20,7 +20,7 @@ setup_keepResolution
ret=0
{
run_withLocalLibs "$BINARY" $BINARY_ARGS $@
run_withLocalLibs "$BINARY" $BINARY_ARGS "$@"
ret=$?
} 2>&1 | tee "$LOGFILE"

View File

@ -22,7 +22,7 @@ ret=0
cd usr/
{
export RUNELF_HELPERS="$APPDIR/usr/lib/ld-linux.so.2"
run_withLocalLibs run_elf "$BINARY" $BINARY_ARGS $@
run_withLocalLibs run_elf "$BINARY" $BINARY_ARGS "$@"
ret=$?
} 2>&1 | tee "$LOGFILE"

View File

@ -60,5 +60,5 @@ cd "$WINEPREFIX"
if [ $CONF ]; then
run_withLocalLibs "$APPDIR/usr/bin/winecfg" $@
else
run_withLocalLibs "$APPDIR/usr/bin/wine" "$APPDIR/$BINARY" $BINARY_ARGS $@
run_withLocalLibs "$APPDIR/usr/bin/wine" "$APPDIR/$BINARY" $BINARY_ARGS "$@"
fi