aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMahesh Radhakrishnan2019-09-27 09:54:09 -0500
committerMahesh Radhakrishnan2019-09-27 09:54:09 -0500
commit21a7a453bed44e383464fa709b206064c2e0caa0 (patch)
treea5cb03e7cb3f4f681d67f2e3f277f8d95cfa9a68
parentb6e83c49fc17765a862ba73300c70ca2c9d6551b (diff)
downloadprocessor-pdk-build-21a7a453bed44e383464fa709b206064c2e0caa0.tar.gz
processor-pdk-build-21a7a453bed44e383464fa709b206064c2e0caa0.tar.xz
processor-pdk-build-21a7a453bed44e383464fa709b206064c2e0caa0.zip
PRSDK-6357: Correcting the windows gmake to use xdc_PATH stringREL.PDK.J7.01.00.00.04DEV.PROCESSOR-SDK.06.01.00.07DEV.PDK_BUILD.01.00.00.14
-rw-r--r--makerules/env.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/makerules/env.mk b/makerules/env.mk
index 8295628..2644830 100644
--- a/makerules/env.mk
+++ b/makerules/env.mk
@@ -257,8 +257,8 @@ EMAKE = emake --emake-emulation=gmake --emake-gen-subbuild-db=1 --emake-annodeta
257 257
258ifeq ($(OS),Windows_NT) 258ifeq ($(OS),Windows_NT)
259#if XDCTOOLS present use xdctools' gmake, else use the one available in the system 259#if XDCTOOLS present use xdctools' gmake, else use the one available in the system
260 ifneq ($(xdc_path),) 260 ifneq ($(xdc_PATH),)
261 MAKE = $(xdc_path)/gmake 261 MAKE = $(xdc_PATH)/gmake
262 else 262 else
263 MAKE = gmake 263 MAKE = gmake
264 endif 264 endif