mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
Fix make-target-contrib for Solaris
It said "test: argument expected" if CC was not set
This commit is contained in:
parent
d2e3007555
commit
20ed265537
|
|
@ -21,7 +21,7 @@ LC_ALL=C
|
|||
|
||||
# Just doing CC=${CC:-cc} may be enough, but it needs to be checked
|
||||
# that cc is available on all platforms.
|
||||
if [ -z $CC ]; then
|
||||
if [ -z "$CC" ]; then
|
||||
if [ -x "`command -v cc`" ]; then
|
||||
CC=cc
|
||||
else
|
||||
|
|
|
|||
Loading…
Reference in a new issue