bootstrap fails silently when unix2dos isn 't installed 2007-06-28 - By Axel Howind
Back Hello,
after solving the bakefile issue, the bootstrap script still wouldn't create configure. Looking into the scripts, I discovered rebake did return with a non-zero exit status, but did not print a diagnosis.
I guess the command chaining with "&&" is not really necessary in this case, since all those *.ds? files are just for the microsoft compiler, and pretty useless on a linux machine anyway.
Thanks, Axel
PS: Here's a patch:
Index: . =================================================================== --- . (revision 1635) +++ . (working copy) @@ -1,6 +1,6 @@ #!/bin/sh set -x +unix2dos *.ds? > /dev/null 2>&1 bakefilize && bakefile_gen $* && - unix2dos *.ds? > /dev/null 2>&1 && mv autoconf_inc.m4 config
-- MySQL++ Mailing List For list archives: http://lists.mysql.com/plusplus To unsubscribe: http://lists.mysql.com/plusplus?unsub=mysql@(protected)
|
|