From: Jarkko Hietaniemi Date: Fri, 17 Nov 2000 13:59:04 +0000 (+0000) Subject: Also the 64bitall hints can be either here or there. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=631e9f25f534ec7581a50151c64a351dec40a7ef;p=p5sagit%2Fp5-mst-13.2.git Also the 64bitall hints can be either here or there. p4raw-id: //depot/perl@7722 --- diff --git a/hints/solaris_2.sh b/hints/solaris_2.sh index adb20a1..4b917f5 100644 --- a/hints/solaris_2.sh +++ b/hints/solaris_2.sh @@ -478,7 +478,15 @@ EOCBU # because we need to fix up things right now. case "$use64bitall" in "$define"|true|[yY]*) - . ./UU/use64bitall.cbu + # Need to be double smart because we can be either here or there. + if test -f UU/use64bitall.cbu; then + . ./UU/use64bitall.cbu + else + if test -f use64bitall.cbu; then + . ./use64bitall.cbu + fi + fi + ;; ;; esac