Hugh Sasse wrote:
> So, at present I believe that configure is looking for a grep with tighter
> constraints that provided by the solaris tools:
> bash-2.05$ which grep
> /bin/grep
> bash-2.05$ which egrep
> /bin/egrep
> bash-2.05$

For reasons I am unable to fathom, "egrep" is mapping to /usr/local/bin/egrep
which is a wrapper that invokes:   grep -E ${1+"$@"}
If either /usr/local/bin was in the PATH before /bin or the
invocation was:  /usr/local/bin/grep -E ${1+"$@"}
then all would be fine.  So, I need to modify all usages of egrep and fgrep
to utilize ${EGREP} and ${FGREP} and use the AC_PROG_EGREP/FGREP things
you pointed out below.

I build on Solaris without too much trouble, but I think the GNU
tools are not installed on a search path or they use a "g" prefix
on the standard utility names.  Something.  I'm under some time
pressure on my day job, so it'll likely be a week or two before I
can bump out the hacked EGREP/FGREP stuff.  Sorry. - Bruce

> So those being first on the path should have been found first
> (right?), but configure wants something that
>   'handles long lines and -e"
> 
> Now, AFAICS your configure.in doesn't contain AC_PROG_EGREP
> as per:
> http://www.gnu.org/software/autoconf/manual/autoconf-2.57/html_chapter/autoconf_5.html#SEC40
> 
> so I'm not entirely clear as to why these are being picked up.
> 
>         Hugh
> 


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Autogen-users mailing list
Autogen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/autogen-users

Reply via email to