git: 6aa7d23c17c2 - main - net/termshark: fix build on arm64
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 06 Apr 2023 21:43:58 UTC
The branch main has been updated by fuz: URL: https://cgit.FreeBSD.org/ports/commit/?id=6aa7d23c17c29a2e96bca58be4d92fe450a4da45 commit 6aa7d23c17c29a2e96bca58be4d92fe450a4da45 Author: Robert Clausecker <fuz@FreeBSD.org> AuthorDate: 2023-03-31 23:50:21 +0000 Commit: Robert Clausecker <fuz@FreeBSD.org> CommitDate: 2023-04-06 20:33:19 +0000 net/termshark: fix build on arm64 Remove bogus source file only built on arm64 that contains duplicates of some functions. Approved by: portmgr (build fix blanket) --- net/termshark/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/net/termshark/Makefile b/net/termshark/Makefile index 2ff7c74df17f..53ca59685d02 100644 --- a/net/termshark/Makefile +++ b/net/termshark/Makefile @@ -23,4 +23,7 @@ GO_TARGET= ./cmd/${PORTNAME} PLIST_FILES= bin/${PORTNAME} +post-extract: + ${RM} ${WRKSRC}/pkg/system/dumpcapext_arm64.go + .include <bsd.port.mk>