public inbox for newlib@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] libgloss: rs6000: fix incorrect install dir for xil files
@ 2022-12-14 12:56 Mike Frysinger
  2022-12-19  9:36 ` Corinna Vinschen
  0 siblings, 1 reply; 2+ messages in thread
From: Mike Frysinger @ 2022-12-14 12:56 UTC (permalink / raw)
  To: newlib

The install steps were missing the multilib qualifier causing them
to always install in the same location and stomp each other.
---
 libgloss/rs6000/Makefile.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libgloss/rs6000/Makefile.in b/libgloss/rs6000/Makefile.in
index 815cbd33ba39..489903645ad8 100644
--- a/libgloss/rs6000/Makefile.in
+++ b/libgloss/rs6000/Makefile.in
@@ -389,8 +389,8 @@ install-mbx:
 
 install-xil:
 	${mkinstalldirs} ${DESTDIR}${tooldir}/lib${MULTISUBDIR}
-	set -e; for x in ${XIL_CRT0} ${XIL_BSP}; do ${INSTALL_DATA} $$x $(DESTDIR)${tooldir}/lib/$$x; done
-	set -e; for x in ${XIL_SCRIPTS} ${XIL_SPECS}; do ${INSTALL_DATA} $(srcdir)/$$x $(DESTDIR)${tooldir}/lib/$$x; done
+	set -e; for x in ${XIL_CRT0} ${XIL_BSP}; do ${INSTALL_DATA} $$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x; done
+	set -e; for x in ${XIL_SCRIPTS} ${XIL_SPECS}; do ${INSTALL_DATA} $(srcdir)/$$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x; done
 
 doc:
 info:
-- 
2.38.1


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] libgloss: rs6000: fix incorrect install dir for xil files
  2022-12-14 12:56 [PATCH] libgloss: rs6000: fix incorrect install dir for xil files Mike Frysinger
@ 2022-12-19  9:36 ` Corinna Vinschen
  0 siblings, 0 replies; 2+ messages in thread
From: Corinna Vinschen @ 2022-12-19  9:36 UTC (permalink / raw)
  To: newlib

On Dec 14 07:56, Mike Frysinger wrote:
> The install steps were missing the multilib qualifier causing them
> to always install in the same location and stomp each other.

Looks good, please push.

Thanks,
Corinna


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-12-19  9:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-14 12:56 [PATCH] libgloss: rs6000: fix incorrect install dir for xil files Mike Frysinger
2022-12-19  9:36 ` Corinna Vinschen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).