mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
14 lines
182 B
Bash
14 lines
182 B
Bash
|
#!/bin/sh -e
|
||
|
|
||
|
echo 'Running autoreconf -if...'
|
||
|
(
|
||
|
rm -rf autom4te.cache
|
||
|
rm -f aclocal.m4 ltmain.sh
|
||
|
autoreconf -if ${AC_FLAGS}
|
||
|
)
|
||
|
|
||
|
echo 'Running ./configure...'
|
||
|
(
|
||
|
./configure
|
||
|
)
|