Hugh Sasse wrote: > This resulted in two failures (below). > > (I've not noticed failure output being sent to a file. Is this > how you like them reported, or should I be doing something else?) (This is fine)
> + test invocation_ct = 2 = invocation_ct = 2 > + ./immediate help version=c > + fgrep USAGE: > grep: illegal option -- F > Usage: grep -hblcnsviw pattern file . . . Looks like "fgrep" got wrapped with a GNU tools wrapper. There is no "fgrep" in GNU, except as a wrapper that invokes "grep -F". Obviously, that wrapper snagged the Solaris "grep" and it doesn't grok "-F". You need to fiddle with your $PATH ordering. > f= > + test -z > + failure no USAGE: in help text > + egrep -v ^# keyword.cfg > grep: illegal option -- E Same issue: there is no GNU "egrep", except as a wrapper that invokes "grep -E". So, you have the GNU wrapper and the Solaris "grep". Either fix the wrappers to use a full path to the correct grep, or fix your $PATH to search in the correct order. ------------------------------------------------------------------------- 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