diff options
author | Tony Cook <tony@develop-help.com> | 2012-06-12 11:05:37 +0000 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2012-06-12 11:51:32 +0000 |
commit | a57576aa4759c354d07acaa21f705daa489d832c (patch) | |
tree | af08c74bc6ba037dfa0284db5161197cc1bf8287 /hints | |
parent | 0da72d5e623b55d88fb3772b9c91e8f2d1ea7c40 (diff) | |
download | perl-a57576aa4759c354d07acaa21f705daa489d832c.tar.gz |
don't override a user supplied prefix on Haiku-OS
Diffstat (limited to 'hints')
-rw-r--r-- | hints/haiku.sh | 5 |
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' |