aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xkerl12
1 files changed, 9 insertions, 3 deletions
diff --git a/kerl b/kerl
index 3675f38..e0cf1f3 100755
--- a/kerl
+++ b/kerl
@@ -391,7 +391,8 @@ get_otp_version()
get_perl_version()
{
if assert_perl; then
- perl -v | grep version | sed $SED_OPT -e 's/.*v5\.([0-9]+)\.[0-9].*/\1/'
+ # This is really evil but it's portable and it works. Don't @ me bro
+ perl -e 'print int(($] - 5)*1000)'
else
echo "FATAL: I couldn't find perl which is required to compile Erlang."
exit 1
@@ -898,8 +899,13 @@ ACTIVATE_CSH
if [ -d "$DOC_DIR" ]; then
echo "Installing docs..."
cp $CP_OPT "$DOC_DIR/" "$absdir/lib"
- ln -s "$absdir/lib/erlang/man" "$absdir/man"
- ln -s "$absdir/lib/erlang/doc" "$absdir/html"
+ if [ -d "$absdir/lib/erlang/man" ]; then
+ ln -s "$absdir/lib/erlang/man" "$absdir/man"
+ ln -s "$absdir/lib/erlang/doc" "$absdir/html"
+ elif [ -d "$absdir/lib/man" ]; then
+ ln -s "$absdir/lib/man" "$absdir/man"
+ ln -s "$absdir/lib/doc" "$absdir/html"
+ fi
fi
else
if [ "$KERL_BUILD_BACKEND" = "tarball" ]; then