Files
macports-base/standard_configure.sh
T
Joshua Root 70d6bdb606 revert most of https://trac.macports.org/changeset/117518, ability to set a custom PATH is important for custom builds, especially on other platforms
provide a shell script that demonstrates how to run configure for a standard build

git-svn-id: https://svn.macports.org/repository/macports/trunk/base@117520 d073be05-634f-4543-b044-5fe20cf6d1d6
2014-03-02 17:32:20 +00:00

10 lines
423 B
Bash
Executable File

#!/bin/sh
# This is how we run configure when building binary packages (more or less,
# minus architecture selection). If you don't want a custom build, this
# is probably how you should run it too.
env PATH=/usr/bin:/bin:/usr/sbin:/sbin CFLAGS="-pipe -Os" ./configure --enable-readline
# If you want to use a different prefix, add this to the above:
# --prefix=/some/path --with-applications-dir=/some/path/Applications