aboutsummaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct7
1 files changed, 6 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 8e6981a..1f2a35b 100644
--- a/SConstruct
+++ b/SConstruct
@@ -58,7 +58,12 @@ else:
58 arch_flags = Split(SUPPORTED_ARCHS[arch]) 58 arch_flags = Split(SUPPORTED_ARCHS[arch])
59 59
60# add architecture dependent include search path 60# add architecture dependent include search path
61KERNEL_ARCH_INCLUDE = '%s/arch/%s/include' % (LITMUS_KERNEL, arch) 61if arch in ['x86','x86_64']:
62 include_arch = 'x86'
63else:
64 include_arch = 'sparc'
65
66KERNEL_ARCH_INCLUDE = '%s/arch/%s/include' % (LITMUS_KERNEL, include_arch)
62INCLUDE_DIRS = INCLUDE_DIRS + ' ' + KERNEL_ARCH_INCLUDE 67INCLUDE_DIRS = INCLUDE_DIRS + ' ' + KERNEL_ARCH_INCLUDE
63 68
64# Set Environment 69# Set Environment