lol

Merge pull request #138290 from sternenseemann/bintools-check-to-wrap

bintools-wrapper: check if bintools to wrap isGNU, not stdenv

authored by

John Ericson and committed by
GitHub
8730fcbd f63e1bb4

+1 -1
+1 -1
pkgs/build-support/bintools-wrapper/default.nix
··· 327 327 ### 328 328 ### Remove LC_UUID 329 329 ### 330 - + optionalString (stdenv.targetPlatform.isDarwin && !(stdenv.cc.bintools.bintools.isGNU or false)) '' 330 + + optionalString (stdenv.targetPlatform.isDarwin && !(bintools.isGNU or false)) '' 331 331 echo "-no_uuid" >> $out/nix-support/libc-ldflags-before 332 332 '' 333 333