summaryrefslogtreecommitdiff
path: root/hints
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-11-17 13:59:04 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-11-17 13:59:04 +0000
commit631e9f25f534ec7581a50151c64a351dec40a7ef (patch)
treeb363caf7dc6fdbfbf21f4b97ebacee2dd87243d0 /hints
parent3ca0b005d0587848a2a5309c2ecfcf21efead626 (diff)
downloadperl-631e9f25f534ec7581a50151c64a351dec40a7ef.tar.gz
Also the 64bitall hints can be either here or there.
p4raw-id: //depot/perl@7722
Diffstat (limited to 'hints')
-rw-r--r--hints/solaris_2.sh10
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