mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
racket: use --enable-useprefix configure flag.
This is to fix a regression in upstream Racket packaging, the upstream bug tracking this is here: https://github.com/racket/racket/issues/3046 When the bug is fixed this workaround will be unnecessary.
This commit is contained in:
parent
2da253a7de
commit
b271255ede
@ -82,7 +82,10 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
shared = if stdenv.isDarwin then "dylib" else "shared";
|
||||
configureFlags = [ "--enable-${shared}" "--enable-lt=${libtool}/bin/libtool" ]
|
||||
configureFlags = [ "--enable-${shared}" "--enable-lt=${libtool}/bin/libtool"
|
||||
# The following flag is a temporary workaround for an upstream bug:
|
||||
# https://github.com/racket/racket/issues/3046
|
||||
"--enable-useprefix" ]
|
||||
++ stdenv.lib.optional disableDocs [ "--disable-docs" ]
|
||||
++ stdenv.lib.optional stdenv.isDarwin [ "--enable-xonx" ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user