<p>Martin Roth has uploaded this change for <strong>review</strong>.</p><p><a href="https://review.coreboot.org/21700">View Change</a></p><pre style="font-family: monospace,monospace; white-space: pre-wrap;">src/vendorcode/amd: Use AR variable in Makefiles<br><br>Change-Id: I5158f1bcc18eb5b15f310d0cf50fb787c12317c8<br>Signed-off-by: Martin Roth <martinroth@google.com><br>---<br>M src/vendorcode/amd/agesa/f12/Makefile.inc<br>M src/vendorcode/amd/agesa/f15/Makefile.inc<br>M src/vendorcode/amd/agesa/f15tn/Makefile.inc<br>M src/vendorcode/amd/agesa/f16kb/Makefile.inc<br>M src/vendorcode/amd/pi/Makefile.inc<br>5 files changed, 6 insertions(+), 5 deletions(-)<br><br></pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;">git pull ssh://review.coreboot.org:29418/coreboot refs/changes/00/21700/1</pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;">diff --git a/src/vendorcode/amd/agesa/f12/Makefile.inc b/src/vendorcode/amd/agesa/f12/Makefile.inc<br>index 3445b29..a5817a1 100644<br>--- a/src/vendorcode/amd/agesa/f12/Makefile.inc<br>+++ b/src/vendorcode/amd/agesa/f12/Makefile.inc<br>@@ -58,7 +58,8 @@<br> <br> $(obj)/libagesa.fam12.a: $$(libagesa-objs)<br>      @printf "    AGESA        $(subst $(obj)/,,$(@))\n"<br>-        ar rcs $@ $+<br>+ $(AR_libagesa) rcs $@ $+<br>+<br> <br> romstage-libs  += $(obj)/libagesa.fam12.a<br> ramstage-libs  += $(obj)/libagesa.fam12.a<br>diff --git a/src/vendorcode/amd/agesa/f15/Makefile.inc b/src/vendorcode/amd/agesa/f15/Makefile.inc<br>index 0172621..7a29a81 100644<br>--- a/src/vendorcode/amd/agesa/f15/Makefile.inc<br>+++ b/src/vendorcode/amd/agesa/f15/Makefile.inc<br>@@ -49,7 +49,7 @@<br> <br> $(obj)/libagesa.fam15.a: $$(libagesa-objs)<br>        @printf "    AGESA        $(subst $(obj)/,,$(@))\n"<br>-        ar rcs $@ $+<br>+ $(AR_libagesa) rcs $@ $+<br> <br> romstage-libs  += $(obj)/libagesa.fam15.a<br> ramstage-libs  += $(obj)/libagesa.fam15.a<br>diff --git a/src/vendorcode/amd/agesa/f15tn/Makefile.inc b/src/vendorcode/amd/agesa/f15tn/Makefile.inc<br>index c5d1eee..114be73 100644<br>--- a/src/vendorcode/amd/agesa/f15tn/Makefile.inc<br>+++ b/src/vendorcode/amd/agesa/f15tn/Makefile.inc<br>@@ -63,7 +63,7 @@<br> <br> $(obj)/libagesa.fam15tn.a: $$(libagesa-objs)<br>         @printf "    AGESA        $(subst $(obj)/,,$(@))\n"<br>-        ar rcs $@ $+<br>+ $(AR_libagesa) rcs $@ $+<br> <br> romstage-libs  += $(obj)/libagesa.fam15tn.a<br> ramstage-libs  += $(obj)/libagesa.fam15tn.a<br>diff --git a/src/vendorcode/amd/agesa/f16kb/Makefile.inc b/src/vendorcode/amd/agesa/f16kb/Makefile.inc<br>index 3837d8e..a08b5d7 100644<br>--- a/src/vendorcode/amd/agesa/f16kb/Makefile.inc<br>+++ b/src/vendorcode/amd/agesa/f16kb/Makefile.inc<br>@@ -63,7 +63,7 @@<br> <br> $(obj)/libagesa.fam16kb.a: $$(libagesa-objs)<br>     @printf "    AGESA        $(subst $(obj)/,,$(@))\n"<br>-        ar rcs $@ $+<br>+ $(AR_libagesa) rcs $@ $+<br> <br> romstage-libs  += $(obj)/libagesa.fam16kb.a<br> ramstage-libs  += $(obj)/libagesa.fam16kb.a<br>diff --git a/src/vendorcode/amd/pi/Makefile.inc b/src/vendorcode/amd/pi/Makefile.inc<br>index c4ab131..25b4a9f 100644<br>--- a/src/vendorcode/amd/pi/Makefile.inc<br>+++ b/src/vendorcode/amd/pi/Makefile.inc<br>@@ -151,7 +151,7 @@<br> <br> $(agesa_output_path)/libagesa.a: $(call src-to-obj,libagesa,$(agesa_src_files))<br>    @printf "    AGESA      $(subst $(obj)/,,$(@))\n"<br>-  ar rcs $@ $+<br>+ $(AR_libagesa) rcs $@ $+<br> <br> bootblock-libs += $(agesa_output_path)/libagesa.a<br> romstage-libs += $(agesa_output_path)/libagesa.a<br></pre><p>To view, visit <a href="https://review.coreboot.org/21700">change 21700</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/21700"/><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: I5158f1bcc18eb5b15f310d0cf50fb787c12317c8 </div>
<div style="display:none"> Gerrit-Change-Number: 21700 </div>
<div style="display:none"> Gerrit-PatchSet: 1 </div>
<div style="display:none"> Gerrit-Owner: Martin Roth <martinroth@google.com> </div>