how-lix-os-pkgs/autoconf/default/conf.sh

18 lines
319 B
Bash
Executable File

#!/bin/sh
set -e
autoreconf -vi
./configure \
--build=$(uname -m)-lix-linux-musl \
--host=$(uname -m)-lix-linux-musl \
--prefix=
## explanation
#
# --build: make sure the correct build string is set.
#
# --host: make sure the correct host string is set.
#
# --prefix: respect the "no /usr/local" scheme.