summaryrefslogtreecommitdiffstats
path: root/src/usr/targeting
diff options
context:
space:
mode:
authorDan Crowell <dcrowell@us.ibm.com>2019-06-26 13:31:55 -0500
committerDaniel M. Crowell <dcrowell@us.ibm.com>2019-07-09 13:17:37 -0500
commitd667cbdad00d1bd27654c6eb1a3326fbe242e7b9 (patch)
tree7f8e5dc2e298345f5281851e1c099d47e41bcb5a /src/usr/targeting
parent6c082570bd75c86e54b28925de08143136f21f0c (diff)
downloadtalos-hostboot-d667cbdad00d1bd27654c6eb1a3326fbe242e7b9.tar.gz
talos-hostboot-d667cbdad00d1bd27654c6eb1a3326fbe242e7b9.zip
Make attribute xml inclusion more specific
The previous code used a naked wildcard to grab the fapi attribute xml files. This can cause local build failures if there are editor temporary files or anything else non-standard in the same directory. The makefile was modified to explicitly look for only .xml files. Change-Id: Iba6434e150b823b74a65ba15084fb18905083de2 Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/79550 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com> Reviewed-by: Matt Derksen <mderkse1@us.ibm.com> Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/targeting')
-rwxr-xr-xsrc/usr/targeting/xmltohb/makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/usr/targeting/xmltohb/makefile b/src/usr/targeting/xmltohb/makefile
index 47fc1f472..1f81d9302 100755
--- a/src/usr/targeting/xmltohb/makefile
+++ b/src/usr/targeting/xmltohb/makefile
@@ -59,12 +59,12 @@ FAPIATTRSRVC_SOURCE = \
# Attribute XML files.
-FAPI2_ATTR_XML += $(wildcard $(ROOTPATH)/src/import/chips/p9/procedures/xml/attribute_info/*)
-FAPI2_ATTR_XML += $(wildcard $(ROOTPATH)/src/import/hwpf/fapi2/xml/attribute_info/*)
-FAPI2_ATTR_XML += $(wildcard $(ROOTPATH)/src/import/chips/centaur/procedures/xml/attribute_info/*)
-FAPI2_ATTR_XML += $(wildcard $(ROOTPATH)/src/import/generic/procedures/xml/attribute_info/*)
-FAPI2_ATTR_XML += $(wildcard $(ROOTPATH)/src/import/chips/ocmb/explorer/procedures/xml/attribute_info/*)
-FAPI2_ATTR_XML += $(wildcard $(ROOTPATH)/src/import/chips/ocmb/common/procedures/xml/attribute_info/*)
+FAPI2_ATTR_XML += $(wildcard $(ROOTPATH)/src/import/chips/p9/procedures/xml/attribute_info/*.xml)
+FAPI2_ATTR_XML += $(wildcard $(ROOTPATH)/src/import/hwpf/fapi2/xml/attribute_info/*.xml)
+FAPI2_ATTR_XML += $(wildcard $(ROOTPATH)/src/import/chips/centaur/procedures/xml/attribute_info/*.xml)
+FAPI2_ATTR_XML += $(wildcard $(ROOTPATH)/src/import/generic/procedures/xml/attribute_info/*.xml)
+FAPI2_ATTR_XML += $(wildcard $(ROOTPATH)/src/import/chips/ocmb/explorer/procedures/xml/attribute_info/*.xml)
+FAPI2_ATTR_XML += $(wildcard $(ROOTPATH)/src/import/chips/ocmb/common/procedures/xml/attribute_info/*.xml)
# Filter out Temp defaults XML file from Attribute XML files.
OpenPOWER on IntegriCloud