Georg Baum wrote:
>> CONFIGURE="../configure --prefix=/usr/local
>> --with-extra-inc=/usr/include/qt3 --enable-maintainer-mode
>> --with-version-suffix --with-included-gettext
>> --with-frontend='xforms qt gtk'"
> 
> Does this line break come from the mailer or is it in the script? I
> don't know, but it might be a problem.

>From the mailer. Attached is the test code I've used. 'conftest.sh'
invokes a dummy 'configure' that just prints out the args:

$ sh conftest.sh
./configure --with-frontend='xforms qt gtk'
arg is "--with-frontend='xforms"
arg is "qt"
arg is "gtk'"

Angus

$ cat conftest.sh
#! /bin/sh

CONFIGURE="./configure --with-frontend='xforms qt gtk'"
echo ${CONFIGURE}
${CONFIGURE}

$ cat configure
#! /bin/sh

for arg in $@
do
        echo "arg is \"$arg\""
done

Attachment: configure
Description: application/shellscript

Attachment: conftest.sh
Description: application/shellscript

Reply via email to