On Wed, Jan 09, 2013 at 10:46:49AM -0800, Eric Christopher wrote: > One nit: > > +if test "$GXX" = "yes" > +then > > is usually done: > > if test "x$GXX" = "xyes"; then That style is mostly a workaround for ancient test implementations that don't do correct precedence rules. Joerg