stdenv: automatically update config.sub for musl

This commit is contained in:
Will Dietz 2018-01-03 16:13:15 -06:00
parent 41435ee8a6
commit 5dcf3cdf37
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ rec {
# without proper `file` command, libtool sometimes fails # without proper `file` command, libtool sometimes fails
# to recognize 64-bit DLLs # to recognize 64-bit DLLs
++ stdenv.lib.optional (hostPlatform.config == "x86_64-w64-mingw32") pkgs.file ++ stdenv.lib.optional (hostPlatform.config == "x86_64-w64-mingw32") pkgs.file
++ stdenv.lib.optional hostPlatform.isAarch64 pkgs.updateAutotoolsGnuConfigScriptsHook ++ stdenv.lib.optional (hostPlatform.isAarch64 || hostPlatform.libc == "musl") pkgs.updateAutotoolsGnuConfigScriptsHook
; ;
crossConfig = hostPlatform.config; crossConfig = hostPlatform.config;