Merge pull request #68961 from eraserhd/pr/master/plan9port-missing-which

plan9port: use command instead of which in builder.sh
This commit is contained in:
Anderson Torres 2019-09-20 07:34:08 -03:00 committed by GitHub
commit 92324d92a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,7 +22,7 @@ plan9portLinkFlags()
configurePhase()
{
(
echo CC9=\"$(which $CC)\"
echo CC9=\"$(command -v $CC)\"
echo CFLAGS=\"$NIX_CFLAGS_COMPILE\"
echo LDFLAGS=\"$(plan9portLinkFlags)\"
echo X11=\"${libXt_dev}/include\"