gdb: fix musl build
fixes #104133 Signed-off-by: Jörg Thalheim <joerg@thalheim.io>
This commit is contained in:
parent
a346c68411
commit
aaae419aac
|
@ -82,7 +82,8 @@ stdenv.mkDerivation rec {
|
|||
"--with-mpfr=${mpfr.dev}"
|
||||
"--with-expat" "--with-libexpat-prefix=${expat.dev}"
|
||||
"--with-auto-load-safe-path=${builtins.concatStringsSep ":" safePaths}"
|
||||
] ++ lib.optional (!pythonSupport) "--without-python";
|
||||
] ++ lib.optional (!pythonSupport) "--without-python"
|
||||
++ lib.optional stdenv.hostPlatform.isMusl "--disable-nls";
|
||||
|
||||
postInstall =
|
||||
'' # Remove Info files already provided by Binutils and other packages.
|
||||
|
|
Loading…
Reference in New Issue