5 lines
149 B
Bash
5 lines
149 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
if [ ! -e build/m4 ]; then mkdir -p build/m4; fi
|
||
|
autoreconf --force -v --install || ( echo "autogen: autoreconf -i failed." && false )
|