blob: dcc71997de17cc4bf14399d222dd4b075a15f507 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
From: Jochen Sprickerhof <jochen@sprickerhof.de>
Date: Tue, 6 Nov 2012 23:49:55 +0100
Subject: Fix include dirs
---
Platform/Linux/Build/EngineLibMakefile | 2 +-
Platform/Linux/Build/Utils/EngineUtilMakefile | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Platform/Linux/Build/EngineLibMakefile b/Platform/Linux/Build/EngineLibMakefile
index 56b274f..34da6c2 100644
--- a/Platform/Linux/Build/EngineLibMakefile
+++ b/Platform/Linux/Build/EngineLibMakefile
@@ -14,7 +14,7 @@
#############################################################################
INC_DIRS += \
- =/usr/include/ni \
+ /usr/include/ni \
../../../../Include \
../../../../Source \
../../../../Source/XnCommon
diff --git a/Platform/Linux/Build/Utils/EngineUtilMakefile b/Platform/Linux/Build/Utils/EngineUtilMakefile
index 9f57574..fa5597b 100644
--- a/Platform/Linux/Build/Utils/EngineUtilMakefile
+++ b/Platform/Linux/Build/Utils/EngineUtilMakefile
@@ -14,7 +14,7 @@
#############################################################################
INC_DIRS += \
- =/usr/include/ni \
+ /usr/include/ni \
../../../../../Include \
../../../../../Source \
../../../../../Source/XnCommon
|