plan9port: do not use which in builder.sh

Removing the build time dependency on which broke builder.sh
This commit is contained in:
Jason Felice 2019-09-13 15:13:42 -04:00
parent 279d51e585
commit 1a5c68c7fe

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