Alexandru Cabuz wrote:
Yes, but a better thing is to fix dchroot's / su's stupidity with a script (make this do_chroot):So in conclusion, is there any way to tell KDE to put apostrophes around filenames when it calls various programs?
#!/bin/bash
# Work around dchroot brain-deadness
ARGS=""
for i in "$@" ; do
ARGS="$ARGS '$i'"
done
exec dchroot -c ia32 -d -q "`basename $0`" "$ARGS"
Much eaiser.
Adam