From b19c7de609645fa1f5e9bf11c50968898dda8f0c Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 5 Dec 2024 17:43:58 -0600 Subject: [PATCH] build plugin in place, but install via 'go install' --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 834674b..c7c9ab5 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ all: plugin - ldd fyne.so + #ldd fyne.so plugin: - go build -v -x -buildmode=plugin -o fyne.so + GO111MODULE=off go build -v -x -buildmode=plugin -o fyne.so install: go build -v -x -buildmode=plugin -o fyne.so