From c4b07f549747fd1c983eb2a5c9ea05a8d87f04c0 Mon Sep 17 00:00:00 2001 From: Sveta Smirnova Date: Tue, 13 Jan 2026 18:36:31 +0300 Subject: [PATCH] PT-2506 - make install does not install Go tools - Changed INST_SCRIPT to INST_BIN --- Makefile.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.PL b/Makefile.PL index 95858acc..e27c39dc 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -7,7 +7,7 @@ pkgs = $(shell find src/go -type d -name "pt-*" -exec basename {} \;) gotools: cd src/go && VERSION=$(VERSION) $(MAKE) build - @$(foreach pkg,$(pkgs),cp bin/$(pkg) $(INST_SCRIPT);) + @$(foreach pkg,$(pkgs),cp bin/$(pkg) $(INST_BIN);) goclean: @$(foreach pkg,$(pkgs),rm -f bin/$(pkg) 2> /dev/null;)