diff options
author | khia <[email protected]> | 2014-04-07 11:35:52 -0700 |
---|---|---|
committer | khia <[email protected]> | 2014-04-07 11:35:52 -0700 |
commit | c3a6be2e9062743cb9d848fe454abef86a6b034d (patch) | |
tree | 708112ca17a746ac3f0412cb9898e2aa83512f65 | |
parent | f350e80171c1f4f004babe0a7186336ad7a14aa7 (diff) | |
parent | 85044deafbbe63b6b0ca70dad404a5279b44bf73 (diff) | |
download | kerl-c3a6be2e9062743cb9d848fe454abef86a6b034d.tar.gz kerl-c3a6be2e9062743cb9d848fe454abef86a6b034d.tar.bz2 kerl-c3a6be2e9062743cb9d848fe454abef86a6b034d.zip |
Merge pull request #65 from vlm/patch-1
Update kerl to grok KERL_INSTALL_MANPAGES env
-rwxr-xr-x | kerl | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -46,6 +46,9 @@ fi if [ -n "$KERL_DEPLOY_RSYNC_OPTIONS" ]; then _KDRSYNC="$KERL_DEPLOY_RSYNC_OPTIONS" fi +if [ -n "KERL_INSTALL_MANPAGES" ]; then + _KIM="$KERL_INSTALL_MANPAGES" +fi KERL_CONFIGURE_OPTIONS= KERL_CONFIGURE_APPLICATIONS= KERL_CONFIGURE_DISABLE_APPLICATIONS= @@ -76,6 +79,9 @@ fi if [ -n "$_KDRSYNC" ]; then KERL_DEPLOY_RSYNC_OPTIONS="$_KDRSYNC" fi +if [ -n "$_KIM" ]; then + KERL_INSTALL_MANPAGES="$_KIM" +fi if [ -z "$KERL_SASL_STARTUP" ]; then INSTALL_OPT=-minimal |