From 8364ae4d1547eeb0d46e6f2c35b9c230722f7963 Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Fri, 17 Nov 2000 00:23:22 +0000 Subject: The long double hints can be here or there. p4raw-id: //depot/perl@7720 --- hints/solaris_2.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'hints/solaris_2.sh') 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 -- cgit v1.2.1