summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-02-11 23:33:57 +0200
committerPaul Buetow <paul@buetow.org>2024-02-11 23:33:57 +0200
commit2a04dddad59f130c2f2cca682e1b55996f3a5391 (patch)
treef2f370f6c3b0fed9a692bf2738d4bb2dda3e6390
parentd37b58c1f9d4881a7b4f726cb6fb7a9870372ebe (diff)
no race
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 484487f..30d40d1 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@ gobuild:
echo 'package main' > internal/opids.go
echo >> internal/opids.go
sed -E 's/#define (.*) ([0-9]+)/const \1 = \2/' opids.h >> internal/opids.go
- go build -race -tags netgo -ldflags '-w -extldflags "-static"' -o ioriotng ./cmd/ioriotng/main.go
+ go build -tags netgo -ldflags '-w -extldflags "-static"' -o ioriotng ./cmd/ioriotng/main.go
clean:
find . -type f -name ioriotng -delete