mirror of
https://github.com/JamesonHuang/OpenWrt_Luci_Lua.git
synced 2024-11-23 22:00:11 +00:00
15 lines
237 B
Bash
15 lines
237 B
Bash
|
#!/bin/sh -e
|
||
|
|
||
|
rm -rf config.cache build
|
||
|
mkdir build
|
||
|
libtoolize --force $LIBTOOLIZE_FLAGS
|
||
|
aclocal -I m4
|
||
|
autoconf
|
||
|
autoheader
|
||
|
automake --add-missing $AUTOMAKE_FLAGS
|
||
|
|
||
|
if test x$NOCONFIGURE = x; then
|
||
|
echo "./configure $*"
|
||
|
./configure $*
|
||
|
fi
|