mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
11 lines
173 B
Bash
Executable file
11 lines
173 B
Bash
Executable file
#!/bin/sh
|
|
|
|
case $(uname -s) in
|
|
FreeBSD)
|
|
ACLOCAL_ARGS="$ACLOCAL_ARGS -I /usr/local/share/aclocal/"
|
|
;;
|
|
esac
|
|
|
|
mkdir -p m4
|
|
|
|
${AUTORECONF:-autoreconf} --force --install "$@"
|