diff options
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/cc/cc_tools/freebsd-native.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/usr.bin/cc/cc_tools/freebsd-native.h b/gnu/usr.bin/cc/cc_tools/freebsd-native.h index 2a91100..ac5c681 100644 --- a/gnu/usr.bin/cc/cc_tools/freebsd-native.h +++ b/gnu/usr.bin/cc/cc_tools/freebsd-native.h @@ -50,4 +50,6 @@ /* Tell gcc to locate libgcc.a for us according to the -m rules. */ #undef LIBGCC_SPEC #define LIBGCC_SPEC \ - "%{!shared:%{!pthread:%{!kthread:libgcc.a%s}}%{pthread|kthread:libgcc_r.a%s}}" + "%{!shared: \ + %{!pthread:libgcc.a%s} \ + %{pthread:libgcc_r.a%s}}" |