mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 18:23:02 +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>
24 lines
849 B
Diff
24 lines
849 B
Diff
From: Steve Sakoman <steve@sakoman.com>
|
|
Date: Mon, 18 Aug 2008 16:07:31 +0000 (-0700)
|
|
Subject: scripts/Makefile.fwinst: add missing space when setting mode in cmd_install
|
|
X-Git-Url: http://www.sakoman.net/cgi-bin/gitweb.cgi?p=linux-omap-2.6.git;a=commitdiff_plain;h=f039944bdd491cde7327133e9976881d3133ae70
|
|
|
|
scripts/Makefile.fwinst: add missing space when setting mode in cmd_install
|
|
|
|
This was causing build failures on some machines
|
|
---
|
|
|
|
diff --git a/scripts/Makefile.fwinst b/scripts/Makefile.fwinst
|
|
index 6bf8e87..fb20532 100644
|
|
--- a/scripts/Makefile.fwinst
|
|
+++ b/scripts/Makefile.fwinst
|
|
@@ -37,7 +37,7 @@ install-all-dirs: $(installed-fw-dirs)
|
|
@true
|
|
|
|
quiet_cmd_install = INSTALL $(subst $(srctree)/,,$@)
|
|
- cmd_install = $(INSTALL) -m0644 $< $@
|
|
+ cmd_install = $(INSTALL) -m 0644 $< $@
|
|
|
|
$(installed-fw-dirs):
|
|
$(call cmd,mkdir)
|