summary refs log tree commit diff
path: root/pkgs/desktops/gnustep
diff options
context:
space:
mode:
authorChuck <chuck@intelligence.org>2019-09-10 15:52:53 -0700
committerChuck <chuck@intelligence.org>2019-09-25 09:23:09 -0700
commita45b3ad89f321d6921f185728f093e6f99724105 (patch)
tree1be64f309e04ab8f1d7d6c52c3afd7d4a7901b73 /pkgs/desktops/gnustep
parentfe5a295a229c791f079f5d83f4d59c409a0e5b90 (diff)
downloadnixpkgs-a45b3ad89f321d6921f185728f093e6f99724105.tar
nixpkgs-a45b3ad89f321d6921f185728f093e6f99724105.tar.gz
nixpkgs-a45b3ad89f321d6921f185728f093e6f99724105.tar.bz2
nixpkgs-a45b3ad89f321d6921f185728f093e6f99724105.tar.lz
nixpkgs-a45b3ad89f321d6921f185728f093e6f99724105.tar.xz
nixpkgs-a45b3ad89f321d6921f185728f093e6f99724105.tar.zst
nixpkgs-a45b3ad89f321d6921f185728f093e6f99724105.zip
makeWrapper: Remove unused extraFlagsArray feature
There is a bug in this feature: It allows extra arguments to leak in
from the environment. For example:

  $ export extraFlagsArray=date
  $ man ls

Note that you get the man page for date rather than for ls. This happens
because 'man' happens to use a wrapper (to add groff to its PATH).

An attempt to fix this was made in 5ae18574fce in PR #19328 for
issue #2537, but 1. That change didn't actually fix the problem because
it addressed makeWrapper's environment during the build process, not the
constructed wrapper script's environment after installation, and 2. That
change was apparently accidentally lost when merged with 7ff6eec5fd8.

Rather than trying to fix the bug again, we remove the extraFlagsArray
feature, since it has never been used in the public repo in the ten
years it has been available.

wrapAclocal continues to use its own, separate flavor of extraFlagsArray
in a more limited context. The analogous bug there was fixed in
4d7d10da6b1 in 2011.
Diffstat (limited to 'pkgs/desktops/gnustep')
-rw-r--r--pkgs/desktops/gnustep/make/builder.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/desktops/gnustep/make/builder.sh b/pkgs/desktops/gnustep/make/builder.sh
index 1655a75eeba..66afe1271ca 100644
--- a/pkgs/desktops/gnustep/make/builder.sh
+++ b/pkgs/desktops/gnustep/make/builder.sh
@@ -16,7 +16,7 @@ wrapGSMake() {
 
 export GNUSTEP_CONFIG_FILE="$config"
 
-exec "$wrapped" "\$@" "\${extraFlagsArray[@]}"
+exec "$wrapped" "\$@"
 EOF
     chmod +x "$program"
 }