diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2015-02-17 18:01:20 +0000 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2015-02-17 18:01:20 +0000 |
commit | 04ffdf6a81289d4734cb56d4feeba6e14d1c7f8e (patch) | |
tree | b9a6073cffdf84989184b83ba72f7878a4232580 /hints | |
parent | 9233b56b2b170092a1710fb43ba0a31ca4cb3cc6 (diff) | |
download | perl-04ffdf6a81289d4734cb56d4feeba6e14d1c7f8e.tar.gz |
Fix where we look for the Sun Studio compiler
It can be solarisstudio* as well
Diffstat (limited to 'hints')
-rw-r--r-- | hints/solaris_2.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hints/solaris_2.sh b/hints/solaris_2.sh index 57f4d14983..2f700d5a78 100644 --- a/hints/solaris_2.sh +++ b/hints/solaris_2.sh @@ -90,7 +90,7 @@ END ` case "$cc" in -'') for i in `ls -r /opt/solstudio*/bin/cc` /opt/SUNWspro/bin/cc +'') for i in `ls -r /opt/sol*studio*/bin/cc` /opt/SUNWspro/bin/cc do if test -f "$i"; then cc=$i |