From: Will P. <pa...@dc...> - 2005-11-11 10:51:56
|
Jim Rowan writes: > RCS file: /cvsroot/ark/sidai/package/GNU.xml,v > retrieving revision 1.36 > diff -u -r1.36 GNU.xml > --- GNU.xml 11 Apr 2005 11:29:09 -0000 1.36 > +++ GNU.xml 9 Nov 2005 23:39:59 -0000 > @@ -121,7 +121,7 @@ > eval "$pre_config_eval" > fi > -CONFIG_SHELL="$CONFIG_SHELL" \ > +CONFIGURE="$CONFIG_SHELL" \ > CC="$cc" \ > CXX="$cxx" \ > CPPFLAGS="$cppflags" \ Hmm... I don't buy this. It simply says "Don't set CONFIG_SHELL" (which is probably not right for all GNU-built programs, which is what that prototype is for), and instead sets the CONFIGURE environment variable... which is never used in a configure script. (I checked the Python one and one or two others.) You will note that the <host> prototypes sidai/host/{linux,solaris}.xml have settings for <CONFIG-SHELL>, to either /bin/bash or /bin/ksh, respectively. Did you try setting <CONFIG-SHELL> for your relevant host (the one doing the building), either with the sidai prototype, or one of your own (or just directly in your <host>.xml)? If setting CONFIG-SHELL correctly doesn't work, then we have a problem :-) Will |