Fix tex4ht build: our new stdenv lacks CC (why, by the way?) so default to gcc if CC empty
This commit is contained in:
parent
a2eb7ca23c
commit
17140ebba8
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
|||
cd src
|
||||
for f in tex4ht t4ht htcmd ; do
|
||||
# -DENVFILE="$out/share/texmf-nix/tex4ht/base/unix/tex4ht.env"
|
||||
$CC -o $f $f.c -I${tetex}/include -L${tetex}/lib -DHAVE_DIRENT_H -DHAVE_DIRENT_H -DKPATHSEA -lkpathsea
|
||||
''${CC:-gcc} -o $f $f.c -I${tetex}/include -L${tetex}/lib -DHAVE_DIRENT_H -DHAVE_DIRENT_H -DKPATHSEA -lkpathsea
|
||||
done
|
||||
cd -
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue