diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-17 00:23:22 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-17 00:23:22 +0000 |
commit | 8364ae4d1547eeb0d46e6f2c35b9c230722f7963 (patch) | |
tree | 872dc75f61df93ae10b899196a0b9484831cb9b5 /hints | |
parent | 7476fdcdf0db028cf6ef4c371c4dcd249b2fbf03 (diff) | |
download | perl-8364ae4d1547eeb0d46e6f2c35b9c230722f7963.tar.gz |
The long double hints can be here or there.
p4raw-id: //depot/perl@7720
Diffstat (limited to 'hints')
-rw-r--r-- | hints/solaris_2.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/hints/solaris_2.sh b/hints/solaris_2.sh index 1b3ec58c94..adb20a14e8 100644 --- a/hints/solaris_2.sh +++ b/hints/solaris_2.sh @@ -510,7 +510,14 @@ EOCBU # because we need to fix up things right now. case "$uselongdouble" in "$define"|true|[yY]*) - . ./UU/uselongdouble.cbu + # Need to be double smart because we can be either here or there. + if test -f UU/uselongdouble.cbu; then + . ./UU/uselongdouble.cbu + else + if test -f uselongdouble.cbu; then + . ./uselongdouble.cbu + fi + fi ;; esac |