about summary refs log tree commit diff
path: root/pkgs/development/compilers/gcl
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-02-25 02:10:33 +0000
committerRobin Gloster <mail@glob.in>2016-02-25 02:10:33 +0000
commit7561c1c9e7352688f7541e88547293599efcd533 (patch)
tree6ffdf97fa3ee33339fab41aef4260d31743a8d9b /pkgs/development/compilers/gcl
parent0f4ecfad68f9ed35beaf9e26df22bb0fb799f645 (diff)
downloadnixlib-7561c1c9e7352688f7541e88547293599efcd533.tar
nixlib-7561c1c9e7352688f7541e88547293599efcd533.tar.gz
nixlib-7561c1c9e7352688f7541e88547293599efcd533.tar.bz2
nixlib-7561c1c9e7352688f7541e88547293599efcd533.tar.lz
nixlib-7561c1c9e7352688f7541e88547293599efcd533.tar.xz
nixlib-7561c1c9e7352688f7541e88547293599efcd533.tar.zst
nixlib-7561c1c9e7352688f7541e88547293599efcd533.zip
gcl: clean up and disable pic hardening
Diffstat (limited to 'pkgs/development/compilers/gcl')
-rw-r--r--pkgs/development/compilers/gcl/default.nix17
1 files changed, 1 insertions, 16 deletions
diff --git a/pkgs/development/compilers/gcl/default.nix b/pkgs/development/compilers/gcl/default.nix
index 25b1599fbea0..008f426d74a1 100644
--- a/pkgs/development/compilers/gcl/default.nix
+++ b/pkgs/development/compilers/gcl/default.nix
@@ -27,22 +27,7 @@ stdenv.mkDerivation rec {
     "--enable-ansi"
   ];
 
-  # Upstream bug submitted - http://savannah.gnu.org/bugs/index.php?30371
-  # $TMPDIR must have no extension
-  # setVars = a.noDepEntry ''
-  #   export TMPDIR="''${TMPDIR:-''${TMP:-''${TEMP}}}/tmp-for-gcl"
-  #   mkdir -p "$TMPDIR"
-  # '';
-
-  preBuild = ''
-    # sed -re "s@/bin/cat@$(which cat)@g" -i configure */configure
-    # sed -re "s@if test -d /proc/self @if false @" -i configure
-    # sed -re 's^([ \t])cpp ^\1cpp -I${stdenv.cc.cc}/include -I${stdenv.cc.libc}/include ^g' -i makefile
-  '';
-
-  /* doConfigure should be removed if not needed */
-  # phaseNames = ["setVars" "doUnpack" "preBuild"
-  #   "doConfigure" "doMakeInstall"];
+  hardening_pic = false;
 
   meta = {
     description = "GNU Common Lisp compiler working via GCC";