summaryrefslogtreecommitdiff
path: root/hints
diff options
context:
space:
mode:
authorTony Cook <tony@develop-help.com>2012-06-12 11:05:37 +0000
committerTony Cook <tony@develop-help.com>2012-06-12 11:51:32 +0000
commita57576aa4759c354d07acaa21f705daa489d832c (patch)
treeaf08c74bc6ba037dfa0284db5161197cc1bf8287 /hints
parent0da72d5e623b55d88fb3772b9c91e8f2d1ea7c40 (diff)
downloadperl-a57576aa4759c354d07acaa21f705daa489d832c.tar.gz
don't override a user supplied prefix on Haiku-OS
Diffstat (limited to 'hints')
-rw-r--r--hints/haiku.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/hints/haiku.sh b/hints/haiku.sh
index c9eba8ebd4..c908bc5435 100644
--- a/hints/haiku.sh
+++ b/hints/haiku.sh
@@ -1,7 +1,10 @@
# Haiku hints file
# $Id$
-prefix="/boot/common"
+case "$prefix" in
+'') prefix="/boot/common" ;;
+*) ;; # pass the user supplied value through
+esac
libpth='/boot/home/config/lib /boot/common/lib /system/lib'
usrinc='/boot/develop/headers/posix'