summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 87987f1)
raw | patch | inline | side by side (parent: 87987f1)
author | vwan@ti.com <vwan@ti.com> | |
Thu, 5 Jun 2014 17:51:24 +0000 (10:51 -0700) | ||
committer | Robert Tivy <rtivy@ti.com> | |
Thu, 5 Jun 2014 18:01:08 +0000 (11:01 -0700) |
This commit fixes the error where recurse.mk is not found on Windows if
QNX_CFLAGS is left empty in products.mak
Signed-off-by: VW <vwan@ti.com>
QNX_CFLAGS is left empty in products.mak
Signed-off-by: VW <vwan@ti.com>
ipc-qnx.mak | patch | blob | history |
diff --git a/ipc-qnx.mak b/ipc-qnx.mak
index ad18e546ebca9140cb1556b3f95e90dbeb849d6d..a90e52116b9430adb116587a59b25fdb59f5ade7 100644 (file)
--- a/ipc-qnx.mak
+++ b/ipc-qnx.mak
.qnx,%: PATH:=$(QNX_PATH):$(PATH)
.qnx,%:
@echo "building Qnx user libraries for \"$(PLATFORM)\" platform..."
+ifneq ("$(QNX_CFLAGS)","")
@make -C qnx \
IPC_REPO=`pwd` \
PLATFORM=$(PLATFORM) \
QNX_CFLAGS=$(QNX_CFLAGS)
+else
+ @make -C qnx \
+ IPC_REPO=`pwd` \
+ PLATFORM=$(PLATFORM)
+endif
clean:
@echo "cleaning Qnx user libraries ..."