aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorJoseph Wayne Norton <[email protected]>2012-05-13 23:38:18 +0900
committerJoseph Wayne Norton <[email protected]>2012-05-14 17:49:13 +0900
commit7f738fc1e43d627f8d2817deff8c0ee83c99653f (patch)
treea89f781907cbaf25cb0c9256b25beb30a2f1ef33 /README.md
parentc46684b1550da8260c8d3d6329685cc9770d6cfe (diff)
downloadkerl-7f738fc1e43d627f8d2817deff8c0ee83c99653f.tar.gz
kerl-7f738fc1e43d627f8d2817deff8c0ee83c99653f.tar.bz2
kerl-7f738fc1e43d627f8d2817deff8c0ee83c99653f.zip
Add support for specifing apps to build via KERL_CONFIGURE_APPLICATIONS
If non-empty, you can specify the subset of applications to use when building (and subsequent installing) Erlang/OTOP with the KERL_CONFIGURE_APPLICATIONS variable, either in your $HOME/.kerlrc file or prepending it to the command line. e.g. KERL_CONFIGURE_APPLICATIONS="kernel stdlib sasl"
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/README.md b/README.md
index 84ea794..fcebb56 100644
--- a/README.md
+++ b/README.md
@@ -187,6 +187,7 @@ You can set the following variables:
- KERL_BUILD_DIR where to hold the builds, defaults to $HOME/.kerl/builds
- KERL_DEFAULT_INSTALL_DIR if set in ~/.kerlrc, install builds to this dir if no path is provided on installs, (recommend "$KERL_BASE_DIR/installs")
- KERL_CONFIGURE_OPTIONS options to pass to Erlang's ./configure script, e.g. --without-termcap
+- KERL_CONFIGURE_APPLICATIONS if non-empty, subset of applications used in the builds (and subsequent installations) process, e.g. "kernel stdlib sasl"
- KERL_DISABLE_AGNER if non-empty will disable agner support
- KERL_AGNER_AUTOINSTALL a list of packages to pre-install
- KERL_SASL_STARTUP use SASL system startup instead of minimal
@@ -237,6 +238,12 @@ You can specify the configure options to use when building Erlang/OTP with the K
$ KERL_CONFIGURE_OPTIONS=--enable-hipe kerl build R14B02 r14b02_hipe
+#### Configure applications
+
+If non-empty, you can specify the subset of applications to use when building (and subsequent installing) Erlang/OTOP with the KERL_CONFIGURE_APPLICATIONS variable, either in your $HOME/.kerlrc file or prepending it to the command line.
+
+ $ KERL_CONFIGURE_APPLICATIONS="kernel stdlib sasl"
+
#### Enable autoconf
You can enable the use of autoconf in the build process setting KERL_USE_AUTOCONF=yes in your $HOME/.kerlrc file