#!/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.