]> source.dussan.org Git - gitea.git/commitdiff
Makefile: Use portable !, not GNUish -not, with find(1). (#24565) (#24572)
authorGiteabot <teabot@gitea.io>
Sun, 7 May 2023 11:30:13 +0000 (07:30 -0400)
committerGitHub <noreply@github.com>
Sun, 7 May 2023 11:30:13 +0000 (19:30 +0800)
Backport #24565 by @riastradh

fix https://github.com/go-gitea/gitea/issues/24564

Co-authored-by: Taylor R Campbell <campbell+gitea@mumble.net>
Makefile

index 65551ef3ec8a81ef4c6cddf8c46380f2bbc895b5..07b9f56732f4ef8fddc30b9875c9071a9855ee6d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -140,7 +140,7 @@ GO_DIRS := cmd tests models modules routers build services tools
 WEB_DIRS := web_src/js web_src/css
 
 GO_SOURCES := $(wildcard *.go)
-GO_SOURCES += $(shell find $(GO_DIRS) -type f -name "*.go" -not -path modules/options/bindata.go -not -path modules/public/bindata.go -not -path modules/templates/bindata.go)
+GO_SOURCES += $(shell find $(GO_DIRS) -type f -name "*.go" ! -path modules/options/bindata.go ! -path modules/public/bindata.go ! -path modules/templates/bindata.go)
 GO_SOURCES += $(GENERATED_GO_DEST)
 GO_SOURCES_NO_BINDATA := $(GO_SOURCES)