Setup path properly for MAKE env variable. ihse-testmakefiles-branch
authorihse
Wed, 29 Nov 2017 21:27:15 +0100
branchihse-testmakefiles-branch
changeset 55913 deb731bd1dc3
parent 55901 4906ef23c9a0
child 55914 dda999e8814c
Setup path properly for MAKE env variable.
make/conf/jib-profiles.js
--- a/make/conf/jib-profiles.js	Tue Nov 28 10:21:25 2017 +0100
+++ b/make/conf/jib-profiles.js	Wed Nov 29 21:27:15 2017 +0100
@@ -846,6 +846,10 @@
                 : "MAKE=" + input.get("gnumake", "install_path") + "/bin/make"),
 
             environment_name: "MAKE",
+            environment_value: (input.build_os == "windows"
+                ? input.get("gnumake", "install_path") + "/cygwin/bin/make"
+                : input.get("gnumake", "install_path") + "/bin/make"),
+
             environment_path: (input.build_os == "windows"
                 ? input.get("gnumake", "install_path") + "/cygwin/bin"
                 : input.get("gnumake", "install_path") + "/bin")