Unverified Commit b8c50e09 authored by John Ericson's avatar John Ericson Committed by GitHub
Browse files

Merge pull request #321270 from obsidiansystems/bsd-comment-fix

*bsd.mkDerivation: Fix comment about `STRIPBIN`
parents 7367b54b 1743662e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -89,7 +89,7 @@ lib.makeOverridable (
      # TODO should CC wrapper set this?
      CPP = "${stdenv'.cc.targetPrefix}cpp";

      # Since STRIP below is the flag
      # Since STRIP in `makeFlags` has to be a flag, not the binary itself
      STRIPBIN = "${stdenv'.cc.bintools.targetPrefix}strip";
    }
    // lib.optionalAttrs stdenv'.isDarwin { MKRELRO = "no"; }
+1 −1
Original line number Diff line number Diff line
@@ -86,7 +86,7 @@ lib.makeOverridable (
      # TODO should CC wrapper set this?
      CPP = "${stdenv'.cc.targetPrefix}cpp";

      # Since STRIP below is the flag
      # Since STRIP in `makeFlags` has to be a flag, not the binary itself
      STRIPBIN = "${stdenv'.cc.bintools.targetPrefix}strip";
    }
    // lib.optionalAttrs (attrs.headersOnly or false) {