mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 17:26:36 +01:00
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
21 lines
930 B
Diff
21 lines
930 B
Diff
don't let the distro compiler point to the wrong installation location
|
|
|
|
Thanks to RP for helping find the source code causing the issue.
|
|
|
|
2010/08/13
|
|
Nitin A Kamble <nitin.a.kamble@intel.com>
|
|
Index: binutils-2.20.1/libiberty/Makefile.in
|
|
===================================================================
|
|
--- binutils-2.20.1.orig/libiberty/Makefile.in
|
|
+++ binutils-2.20.1/libiberty/Makefile.in
|
|
@@ -327,7 +327,8 @@ install: install_to_$(INSTALL_DEST) inst
|
|
# multilib-specific flags, it's overridden by FLAGS_TO_PASS from the
|
|
# default multilib, so we have to take CFLAGS into account as well,
|
|
# since it will be passed the multilib flags.
|
|
-MULTIOSDIR = `$(CC) $(CFLAGS) -print-multi-os-directory`
|
|
+#MULTIOSDIR = `$(CC) $(CFLAGS) -print-multi-os-directory`
|
|
+MULTIOSDIR = ""
|
|
install_to_libdir: all
|
|
${mkinstalldirs} $(DESTDIR)$(libdir)/$(MULTIOSDIR)
|
|
$(INSTALL_DATA) $(TARGETLIB) $(DESTDIR)$(libdir)/$(MULTIOSDIR)/$(TARGETLIB)n
|