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

*bsd.mkDerivation: Fix comment about `STRIPBIN`
This commit is contained in:
John Ericson 2024-06-20 12:59:20 -04:00 committed by GitHub
commit b8c50e09ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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"; }

View File

@ -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) {