<p>Logan Carlson has uploaded this change for <strong>review</strong>.</p><p><a href="https://review.coreboot.org/20783">View Change</a></p><pre style="font-family: monospace,monospace; white-space: pre-wrap;">payloads/external/tianocore: Use consistent print statement syntax<br><br>Change occurences of printf statements to echo statements to improve<br>consistency.<br><br>Change-Id: I6e2b71a5ddf117398d3f9f30981cc54c926c05a2<br>Signed-off-by: Logan Carlson <logancarlson@google.com><br>---<br>M payloads/external/tianocore/Makefile<br>1 file changed, 7 insertions(+), 7 deletions(-)<br><br></pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;">git pull ssh://review.coreboot.org:29418/coreboot refs/changes/83/20783/1</pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;">diff --git a/payloads/external/tianocore/Makefile b/payloads/external/tianocore/Makefile<br>index fdca95c..f2a507c 100644<br>--- a/payloads/external/tianocore/Makefile<br>+++ b/payloads/external/tianocore/Makefile<br>@@ -56,19 +56,19 @@<br>                 echo "Applying $$patch"; \<br>          cd $(project_dir); \<br>          git am --keep-cr $$patch || \<br>-                        ( printf " Error when applying patches.\n"; git am --abort; exit 1; ); \<br>+                   ( echo " Error when applying patches."; git am --abort; exit 1; ); \<br>        done<br> <br> checktools:<br>-        printf "Checking uuid-dev..."<br>+      echo "Checking uuid-dev..."<br>         echo "#include <uuid/uuid.h>" > libtest.c<br>  echo "int main(int argc, char **argv) { (void) argc; (void) argv; return 0; }" >> libtest.c<br>-  $(HOSTCC) $(HOSTCCFLAGS) libtest.c -o libtest >/dev/null 2>&1 && printf " found uuid-dev.\n" || \<br>-                ( printf " Not found.\n"; echo "ERROR: please_install uuid-dev (uuid-devel)"; exit 1 )<br>+   $(HOSTCC) $(HOSTCCFLAGS) libtest.c -o libtest >/dev/null 2>&1 && echo " found uuid-dev." || \<br>+            ( echo " Not found."; echo "ERROR: please_install uuid-dev (uuid-devel)"; exit 1 )<br>        rm -rf libtest.c libtest<br>-     printf "Checking nasm..."<br>-  type nasm > /dev/null 2>&1 && printf " found nasm.\n" || \<br>-               ( printf " Not found.\n"; echo "Error: Please install nasm."; exit 1 )<br>+   echo "Checking nasm..."<br>+    type nasm > /dev/null 2>&1 && echo " found nasm." || \<br>+           ( echo " Not found."; echo "Error: Please install nasm."; exit 1 )<br> <br> config: checkout checktools<br>       unset CC; $(MAKE) -C $(project_dir)/BaseTools<br></pre><p>To view, visit <a href="https://review.coreboot.org/20783">change 20783</a>. To unsubscribe, visit <a href="https://review.coreboot.org/settings">settings</a>.</p><div itemscope itemtype="http://schema.org/EmailMessage"><div itemscope itemprop="action" itemtype="http://schema.org/ViewAction"><link itemprop="url" href="https://review.coreboot.org/20783"/><meta itemprop="name" content="View Change"/></div></div>

<div style="display:none"> Gerrit-Project: coreboot </div>
<div style="display:none"> Gerrit-Branch: master </div>
<div style="display:none"> Gerrit-MessageType: newchange </div>
<div style="display:none"> Gerrit-Change-Id: I6e2b71a5ddf117398d3f9f30981cc54c926c05a2 </div>
<div style="display:none"> Gerrit-Change-Number: 20783 </div>
<div style="display:none"> Gerrit-PatchSet: 1 </div>
<div style="display:none"> Gerrit-Owner: Logan Carlson <logancarlson@google.com> </div>