This is an automated email from the ASF dual-hosted git repository.
zeroshade pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-go.git
The following commit(s) were added to refs/heads/main by this push:
new d6ad5636 fix(build): correct phony target declaration (#890)
d6ad5636 is described below
commit d6ad56361c63fc25c8b8329a49d822f050446c70
Author: Minh Vu <[email protected]>
AuthorDate: Thu Jul 2 21:07:37 2026 +0200
fix(build): correct phony target declaration (#890)
### What changed
Fixed the typo in `arrow/Makefile` from `.PHONEY` to `.PHONY`.
### Why
GNU Make only recognizes `.PHONY`. With the typo, targets like `test`,
`bench`, `assembly`, and `generate` may be treated as real file targets
if files with those names exist.
### Validation
- `make -n -C arrow test`
- `make -n -C arrow bench`
---
arrow/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arrow/Makefile b/arrow/Makefile
index c7e32709..966dbcf8 100644
--- a/arrow/Makefile
+++ b/arrow/Makefile
@@ -23,7 +23,7 @@ GO_SOURCES := $(shell find . -path ./_lib -prune -o -name
'*.go' -not -name '*_
ALL_SOURCES := $(shell find . -path ./_lib -prune -o -name '*.go' -name '*.s'
-not -name '*_test.go')
SOURCES_NO_VENDOR := $(shell find . -path ./vendor -prune -o -name "*.go" -not
-name '*_test.go' -print)
-.PHONEY: test bench assembly generate
+.PHONY: test bench assembly generate
assembly:
@$(MAKE) -C memory assembly