diff options
Diffstat (limited to 'hints')
-rw-r--r-- | hints/solaris_2.sh | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/hints/solaris_2.sh b/hints/solaris_2.sh index adb20a14e8..4b917f5e44 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 |