*bsd.mkDerivation: Fix comment about STRIPBIN

This commit is contained in:
John Ericson
2024-06-20 10:50:12 -04:00
parent e83bb7c547
commit 1743662e55
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) {