On 17:05 Wed 01 Jun , Øyvind Harboe wrote: > How about this? > > > > -- > Øyvind Harboe > > Can Zylin Consulting help on your project? > > US toll free 1-866-980-3434 / International +47 51 87 40 27 > > http://www.zylin.com/zy1000.html > ARM7 ARM9 ARM11 XScale Cortex > JTAG debugger and flash programmer
> From f81b65e167dfe137d946d0add26d74b3e9ad8fce Mon Sep 17 00:00:00 2001 > From: Tormod Volden <[email protected]> > Date: Wed, 1 Jun 2011 17:03:05 +0200 > Subject: [PATCH] bootstrap: make script more robust > > Suggestions copied and pasted from the mailing list. > > Any mistakes are the comitter's. > --- > bootstrap | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/bootstrap b/bootstrap > index 39ece23..fc92610 100755 > --- a/bootstrap > +++ b/bootstrap > @@ -27,7 +27,7 @@ automake --gnu --add-missing --copy > # current source snapshots (working from GIT, or some source snapshot, etc) > # otherwise the documentation will fail to build due to missing version.texi > > -if [ $1 == nosubmodule ]; then > +if [ "$1" = nosubmodule ]; then normaly in shell we so if [ "x$1" = "xnosubmodule" ]; then to compatible with old shell too Best Regards, J. _______________________________________________ Openocd-development mailing list [email protected] https://lists.berlios.de/mailman/listinfo/openocd-development
