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

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\"