Skip to content

Commit 90002de

Browse files
committed
Fix crossSuffix'
1 parent 3eea054 commit 90002de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/coverage/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ let
2323

2424
exeExt = stdenv.hostPlatform.extensions.executable;
2525
crossSuffix = lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) "-${stdenv.hostPlatform.config}";
26-
crossSuffix' = lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform && stdenv.hostPlatform.isStatic) "-static-${stdenv.hostPlatform.config}";
26+
crossSuffix' = lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform && stdenv.hostPlatform.isStatic) "-static" + crossSuffix;
2727

2828
in recurseIntoAttrs ({
2929
# Does not work on ghcjs because it needs zlib.

0 commit comments

Comments
 (0)