mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
12 lines
173 B
Bash
Executable File
12 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 "$@"
|