Merge pull request #234053 from ConnorBaker/fix/cudatoolkit_11_8-broken-symlink

cudaPackages_11_8.cudatoolkit: remove broken include/include symlink

authored by Samuel Ainsworth and committed by GitHub ef247999 b2abc0e2

+4
+4
pkgs/development/compilers/cudatoolkit/common.nix
··· 291 291 '' + lib.optionalString (lib.versionOlder version "8.0") '' 292 292 # Hack to fix building against recent Glibc/GCC. 293 293 echo "NIX_CFLAGS_COMPILE+=' -D_FORCE_INLINES'" >> $out/nix-support/setup-hook 294 + '' 295 + # 11.8 includes a broken symlink, include/include, pointing to targets/x86_64-linux/include 296 + + lib.optionalString (lib.versions.majorMinor version == "11.8") '' 297 + rm $out/include/include 294 298 '' + '' 295 299 runHook postInstall 296 300 '';