You've already forked mysql-audit
mirror of
https://github.com/trellix-enterprise/mysql-audit.git
synced 2025-12-14 18:14:01 +08:00
6 lines
265 B
Bash
6 lines
265 B
Bash
#!/bin/bash
|
|
#
|
|
if [ ! -e build/m4 ]; then mkdir -p build/m4; fi
|
|
autoreconf --force -v --install || ( echo "autogen: autoreconf -i failed." && false )
|
|
CFLAGS=-fPIC ./configure --with-python=/usr/bin/python2 --enable-utf --disable-cpp --disable-shared --enable-static
|