From 89738a24370324c892b183654651ad9fd540436d Mon Sep 17 00:00:00 2001 From: jkito Date: Tue, 1 Nov 2022 00:36:08 +0530 Subject: [pkg] don't hardcode full path to sigcheck.exe the installation path depends on how sigcheck was installed, in case it is installed from choco its put in another location this assumes sigcheck.exe will be available on path --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2f4a381..a633754 100644 --- a/Makefile +++ b/Makefile @@ -182,7 +182,7 @@ endif checksign: ifeq (${PLATFORM}, windows) - @"c:\windows\system32\sigcheck.exe" ${QTBUILD}/release/${TARGET}.exe + @sigcheck.exe ${QTBUILD}/release/${TARGET}.exe endif installer: check_qtifw checksign -- cgit v1.2.3