summaryrefslogtreecommitdiffstats
path: root/src/build/mkrules/hbfw/fsp
diff options
context:
space:
mode:
authorBrian Bakke <bbakke@us.ibm.com>2017-12-15 10:01:28 -0600
committerWilliam G. Hoffa <wghoffa@us.ibm.com>2017-12-22 09:30:00 -0500
commit024dc9b9a20380fd7dbdec4f20aca23ceab751ed (patch)
tree7d8108c49d7a061b2871d82a3be241494d8a8e2a /src/build/mkrules/hbfw/fsp
parent0d8527ec60f3f343fbdac7cf734c64693a1a0766 (diff)
downloadtalos-hostboot-024dc9b9a20380fd7dbdec4f20aca23ceab751ed.tar.gz
talos-hostboot-024dc9b9a20380fd7dbdec4f20aca23ceab751ed.zip
malformed conditional errors with new ODE
RHEL7 does not like missing white space in makefile conditional statements. e.g. '.if(', change to form '.if (' Change-Id: Iaa6808189c7fbc79384abef3d141caafd1bd3774 CQ: SW353850 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/51017 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Reviewed-by: Stephen M. Cprek <smcprek@us.ibm.com> Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
Diffstat (limited to 'src/build/mkrules/hbfw/fsp')
-rwxr-xr-xsrc/build/mkrules/hbfw/fsp/makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/build/mkrules/hbfw/fsp/makefile b/src/build/mkrules/hbfw/fsp/makefile
index 501f9dade..d30f7d4cf 100755
--- a/src/build/mkrules/hbfw/fsp/makefile
+++ b/src/build/mkrules/hbfw/fsp/makefile
@@ -5,7 +5,7 @@
#
# OpenPOWER HostBoot Project
#
-# Contributors Listed Below - COPYRIGHT 2012,2015
+# Contributors Listed Below - COPYRIGHT 2012,2017
# [+] International Business Machines Corp.
#
#
@@ -32,7 +32,7 @@
# Process the targeting subtree
-.if(${CONTEXT:R} == "ppc")
+.if (${CONTEXT:R} == "ppc")
SETUP_SUBDIRS += targeting
EXPINC_SUBDIRS += targeting hwas pnor plugins
@@ -47,7 +47,7 @@ INCLUDES = hbdescriptor.H \
hbotcompid.H \
hbfw_term_rc.H
-.elseif(${CONTEXT} == "x86.nfp")
+.elseif (${CONTEXT} == "x86.nfp")
# this file is in src/hbfw/fsp in cmvc
.include "makefile.nfp"
OpenPOWER on IntegriCloud