makeBinaryWrapper: really unset NIX_CFLAGS

f8cc8ff575
fails to unset the variables in the environment due to a Bash quirk,
so set them to the empty string instead.
This commit is contained in:
Naïm Favier 2022-05-06 17:03:52 +02:00
parent 69c7dbb880
commit d4aa650608
No known key found for this signature in database
GPG key ID: 49B07322580B7EE2

View file

@ -33,8 +33,7 @@ assertExecutable() {
# To troubleshoot a binary wrapper after you compiled it,
# use the `strings` command or open the binary file in a text editor.
makeWrapper() {
local NIX_CFLAGS_COMPILE NIX_CFLAGS_LINK
unset NIX_CFLAGS_COMPILE NIX_CFLAGS_LINK
local NIX_CFLAGS_COMPILE= NIX_CFLAGS_LINK=
local original="$1"
local wrapper="$2"
shift 2