mirror of
https://github.com/JamesonHuang/OpenWrt_Luci_Lua.git
synced 2024-11-23 13:50:11 +00:00
15 lines
237 B
Bash
Executable File
15 lines
237 B
Bash
Executable File
#!/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
|