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

22 lines
447 B
Bash
Executable File

#!/bin/sh
CC="nonexistent" \
CPP="nonexistent" \
CXX="nonexistent" \
./configure #\
# --build="$BUILD" \
# --host="$HOST" \
# --prefix="/"
## explanation
#
# --disable-shared: don't build anything with dynamic linking.
#
# --enable-static: use static linking instead.
#
# --build: make sure the build string gets set correctly.
#
# --host: make sure the host string gets set correctly.
#
# --prefix: respect the "no /usr/local" policy.