diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-17 13:59:04 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-17 13:59:04 +0000 |
commit | 631e9f25f534ec7581a50151c64a351dec40a7ef (patch) | |
tree | b363caf7dc6fdbfbf21f4b97ebacee2dd87243d0 /hints/solaris_2.sh | |
parent | 3ca0b005d0587848a2a5309c2ecfcf21efead626 (diff) | |
download | perl-631e9f25f534ec7581a50151c64a351dec40a7ef.tar.gz |
Also the 64bitall hints can be either here or there.
p4raw-id: //depot/perl@7722
Diffstat (limited to 'hints/solaris_2.sh')
-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 |