From: Jarkko Hietaniemi Date: Fri, 17 Nov 2000 00:23:22 +0000 (+0000) Subject: The long double hints can be here or there. X-Git-Tag: accepted/trunk/20130322.191538~33605 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8364ae4d1547eeb0d46e6f2c35b9c230722f7963;p=platform%2Fupstream%2Fperl.git The long double hints can be here or there. p4raw-id: //depot/perl@7720 --- diff --git a/hints/solaris_2.sh b/hints/solaris_2.sh index 1b3ec58..adb20a1 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