Apparently 'var+=...' is not a dash thing. Fixed thusly.
* config.m4: Avoid non-dash idiom
* configure: Rebuilt.
if os=$(CXX -print-multi-os-directory 2>/dev/null) ; then
toollib+="/${os}"
fi
- LDFLAGS+=" -L $toollib"
+ ## VAR+=... is not dashing
+ LDFLAGS="$LDFLAGS -L $toollib"
unset toollib
fi])
if os=$(CXX -print-multi-os-directory 2>/dev/null) ; then
toollib+="/${os}"
fi
- LDFLAGS+=" -L $toollib"
+ ## VAR+=... is not dashing
+ LDFLAGS="$LDFLAGS -L $toollib"
unset toollib
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking adding -Wl,--no-undefined to linker" >&5