Browse Source

Merge pull request #4212 from karl-zylinski/fix-build-tags

Fix build tags that use ! multiple times on one line.
Laytan 11 months ago
parent
commit
1ab0745ca8

+ 3 - 1
core/debug/trace/trace_nil.odin

@@ -1,4 +1,6 @@
-//+build !windows !linux !darwin
+//+build !windows
+//+build !linux
+//+build !darwin
 package debug_trace
 package debug_trace
 
 
 import "base:runtime"
 import "base:runtime"

+ 2 - 1
core/flags/errors_nonbsd.odin

@@ -1,4 +1,5 @@
-//+build !netbsd !openbsd
+//+build !netbsd
+//+build !openbsd
 package flags
 package flags
 
 
 import "base:runtime"
 import "base:runtime"

+ 2 - 1
core/flags/internal_rtti_nonbsd.odin

@@ -1,5 +1,6 @@
 //+private
 //+private
-//+build !netbsd !openbsd
+//+build !netbsd
+//+build !openbsd
 package flags
 package flags
 
 
 import "core:net"
 import "core:net"

+ 7 - 1
core/testing/signal_handler_other.odin

@@ -1,5 +1,11 @@
 //+private
 //+private
-//+build !windows !linux !darwin !freebsd !openbsd !netbsd !haiku
+//+build !windows
+//+build !linux
+//+build !darwin
+//+build !freebsd
+//+build !openbsd
+//+build !netbsd
+//+build !haiku
 package testing
 package testing
 
 
 /*
 /*

+ 2 - 1
tests/core/net/test_core_net.odin

@@ -10,7 +10,8 @@
 
 
 	A test suite for `core:net`
 	A test suite for `core:net`
 */
 */
-//+build !netbsd !openbsd
+//+build !netbsd
+//+build !openbsd
 package test_core_net
 package test_core_net
 
 
 import "core:testing"
 import "core:testing"