Commit 8c76cbea authored by K900's avatar K900
Browse files

llvmPackages.libc: rename shim .so to .tpl

This makes it not get deleted with cleanSource.
parent 6d15f894
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ stdenv.mkDerivation (finalAttrs: {
  '';

  postInstall = lib.optionalString (!isFullBuild) ''
    substituteAll ${./libc-shim.so} $out/lib/libc.so
    substituteAll ${./libc-shim.tpl} $out/lib/libc.so
  '';

  libc = if (!isFullBuild) then stdenv.cc.libc else null;