pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

delve: correct path to dlv binary



Module Name:	pkgsrc-wip
Committed By:	Benny Siegert <bsiegert%NetBSD.org@localhost>
Pushed By:	bsiegert
Date:		Sun Jul 9 11:24:52 2023 +0200
Changeset:	3cab0eb68f7832de7b3d9d4b5442031f3438c981

Modified Files:
	delve/Makefile

Log Message:
delve: correct path to dlv binary

The binary goes into $GOPATH/bin.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=3cab0eb68f7832de7b3d9d4b5442031f3438c981

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 delve/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diffs:
diff --git a/delve/Makefile b/delve/Makefile
index 26995c5a2f..6ac6419cc2 100644
--- a/delve/Makefile
+++ b/delve/Makefile
@@ -17,7 +17,7 @@ GO_DIST_BASE=		${DISTNAME}
 ONLY_FOR_PLATFORM=	Linux-*-* Darwin-*-* FreeBSD-*-*
 
 do-install:
-	${INSTALL_PROGRAM} ${WRKDIR}/bin/dlv ${DESTDIR}${PREFIX}/bin/
+	${INSTALL_PROGRAM} ${WRKDIR}/.gopath/bin/dlv ${DESTDIR}${PREFIX}/bin/
 
 .include "../../lang/go/go-module.mk"
 .include "../../mk/bsd.pkg.mk"


Home | Main Index | Thread Index | Old Index