From 9813c2a46a9c60b03a333791a500eb45a5c26937 Mon Sep 17 00:00:00 2001 From: Tongkun Zhang Date: Wed, 13 Jul 2022 10:28:06 -0400 Subject: [PATCH] Fix path to make Fixes IBM/ibmi-bob#104 --- makei/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makei/build.py b/makei/build.py index 5811518..9976886 100644 --- a/makei/build.py +++ b/makei/build.py @@ -66,7 +66,7 @@ def __del__(self): def generate_make_cmd(self): """ Returns the make command used to build the project.""" - cmd = f'make -k BUILDVARSMKPATH="{self.build_vars_path}"' + \ + cmd = f'/QOpenSys/pkgs/bin/make -k BUILDVARSMKPATH="{self.build_vars_path}"' + \ f' -k BOB="{self.bob_path}" -f "{self.bob_makefile}"' if self.make_options: cmd = f"{cmd} {self.make_options}"