Differences From Artifact [95541498bc]:
- Executable file build/autogen.sh — part of check-in [07b3ee6214] at 2014-05-01 22:58:06 on branch trunk — Updated to create initial directory (user: rkeene, size: 445) [annotate] [blame] [check-ins using] [more...]
To Artifact [a32990e3be]:
- Executable file build/autogen.sh — part of check-in [4d18f784a8] at 2014-08-31 19:43:50 on branch trunk — Updated to support MUSL better (user: rkeene, size: 675) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
19 20 21 22 23 24 25 | done aclocal -I aclocal autoconf automake -fca rm -rf autom4te.cache | > > > > > > > | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | done aclocal -I aclocal autoconf automake -fca rm -rf autom4te.cache # Add Linux/MUSL support if missing if ! grep '[-]musl' config.sub >/dev/null 2>/dev/null; then sed 's@\(-*\)linux-gnu\* @\1linux-musl | &@g' config.sub > config.sub.new cat config.sub.new > config.sub rm -f config.sub.new fi |