public inbox for newlib-cvs@sourceware.org
help / color / mirror / Atom feed
* [newlib-cygwin] libgloss: rs6000: fix incorrect install dir for xil files
@ 2022-12-20 1:19 Michael Frysinger
0 siblings, 0 replies; only message in thread
From: Michael Frysinger @ 2022-12-20 1:19 UTC (permalink / raw)
To: newlib-cvs
https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=d6468d6b9f7c88fccd64c13470d1cf3938fe3f17
commit d6468d6b9f7c88fccd64c13470d1cf3938fe3f17
Author: Mike Frysinger <vapier@gentoo.org>
Date: Wed Dec 14 07:55:49 2022 -0500
libgloss: rs6000: fix incorrect install dir for xil files
The install steps were missing the multilib qualifier causing them
to always install in the same location and stomp each other.
Diff:
---
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 815cbd33b..489903645 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:
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2022-12-20 1:19 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-20 1:19 [newlib-cygwin] libgloss: rs6000: fix incorrect install dir for xil files Michael Frysinger
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).