Am Samstag, 2. M�rz 2002 22:11 schrieb Mark Blunier:

> checking if the configuration file is readable... profile.user
> source: not found
> configure: error: problem while parsing configuration
> Bash-2.05a$
>

Hmm, looks like something funny is going on with your shell. The 
`source' command is built-in in bash, but not in posix shell, so I guess 
that `configure' falsely assumes that /bin/sh is a link to bash on your 
system.

You can try running 'bash ./configure' instead of just './configure' and
alternatively try the patch below which should fix configure.in to work
on systems where bash is not the default shell. If you try the patch, 
please report back if it works.

Arnd <><

--- configure.in~       Fri Mar  1 22:17:12 2002
+++ configure.in        Sat Mar  2 22:43:47 2002
@@ -52,7 +52,7 @@


 dnl Use the configuration file to determine the requested files
-eval `source $CONFIG_FILE && source ${srcdir}/select.in`
+eval `. $CONFIG_FILE && . ${srcdir}/select.in`

 if test $? != "0" ; then
   AC_MSG_ERROR([problem while parsing configuration])

_______________________________________________
Pgui-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/pgui-devel

Reply via email to