mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-12 21:06:01 +03:00
14 lines
273 B
Bash
Executable File
14 lines
273 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -rf autom4te.cache
|
|
rm -f aclocal.m4
|
|
case `uname` in Darwin*) glibtoolize --force --copy ;;
|
|
*) libtoolize --force --copy ;; esac
|
|
autoreconf --install
|
|
autoheader
|
|
automake --add-missing --foreign --copy --force-missing
|
|
autoconf --force
|
|
rm -rf autom4te.cache
|
|
|
|
|