diff options
author | 2024-02-21 20:29:58 -0500 | |
---|---|---|
committer | 2024-02-21 19:47:58 -0800 | |
commit | 2f8d3a7958c5b3aa952824a75351e7deb64b3471 (patch) | |
tree | 12937662c2e98928a5e8a57a21262a2cb1a15260 | |
parent | 59311deb57cbe03911ca0119b865491a34f12bc9 (diff) | |
download | v2-2f8d3a7958c5b3aa952824a75351e7deb64b3471.tar.gz v2-2f8d3a7958c5b3aa952824a75351e7deb64b3471.tar.zst v2-2f8d3a7958c5b3aa952824a75351e7deb64b3471.zip |
Makefile: do not force CGO_ENABLED=0 for miniflux target
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -44,7 +44,7 @@ export PGPASSWORD := postgres debian-packages miniflux: - @ CGO_ENABLED=0 go build -buildmode=pie -ldflags=$(LD_FLAGS) -o $(APP) main.go + @ go build -buildmode=pie -ldflags=$(LD_FLAGS) -o $(APP) main.go miniflux-no-pie: @ go build -ldflags=$(LD_FLAGS) -o $(APP) main.go |