* [PATCH 0/2] Small fixes (could be for M1)
@ 2011-12-06 6:16 Saul Wold
2011-12-06 6:16 ` [PATCH 1/2] distro_tracking: fix manual entries Saul Wold
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Saul Wold @ 2011-12-06 6:16 UTC (permalink / raw)
To: openembedded-core
Richard,
These are a couple of things I found in distro_tracking (with
Jiajun's help) and wget was pointing to the wrong place, would
be good for the self-hosted build.
Sau!
The following changes since commit 0a7a8597be05c8def8af58eecab49d963dc9d757:
libsdl: Disable pulseaudio explicitly (2011-12-05 23:03:23 +0000)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib sgw/fix
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/fix
Saul Wold (2):
distro_tracking: fix manual entries
wget: Fix wget alternative path to be /usr/bin not /bin
.../conf/distro/include/distro_tracking_fields.inc | 4 ++--
meta/recipes-extended/wget/wget.inc | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
--
1.7.6.4
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] distro_tracking: fix manual entries
2011-12-06 6:16 [PATCH 0/2] Small fixes (could be for M1) Saul Wold
@ 2011-12-06 6:16 ` Saul Wold
2011-12-06 6:16 ` [PATCH 2/2] wget: Fix wget alternative path to be /usr/bin not /bin Saul Wold
2011-12-06 18:47 ` [PATCH 0/2] Small fixes (could be for M1) Richard Purdie
2 siblings, 0 replies; 4+ messages in thread
From: Saul Wold @ 2011-12-06 6:16 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
.../conf/distro/include/distro_tracking_fields.inc | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/conf/distro/include/distro_tracking_fields.inc b/meta/conf/distro/include/distro_tracking_fields.inc
index 3d502ee..f53fffa 100644
--- a/meta/conf/distro/include/distro_tracking_fields.inc
+++ b/meta/conf/distro/include/distro_tracking_fields.inc
@@ -5734,7 +5734,7 @@ RECIPE_NO_UPDATE_REASON_pn-groff = "1.18.1.4 is latest GPLv2 Version no 1.21"
RECIPE_STATUS_pn-eglibc = "red"
RECIPE_LATEST_VERSION_pn-eglibc = "2.13-r15508"
RECIPE_LAST_UPDATE_pn-eglibc = "Nov 16, 2011"
-RECIPE_MANUAL_CHECK_DATE_pn = "Nov 16, 2011"
+RECIPE_MANUAL_CHECK_DATE_pn-eglibc = "Nov 16, 2011"
RECIPE_STATUS_pn-lighttpd = "red"
RECIPE_LAST_UPDATE_pn-lighttpd = "Jul 28, 2011"
@@ -5999,7 +5999,7 @@ RECIPE_STATUS_pn-ghostscript = "red"
RECIPE_LATEST_VERSION_pn-ghostscript = "9.04"
RECIPE_MAINTAINER_pn-ghostscript = "Kai Kang <kai.kang@windriver.com>"
RECIPE_LAST_UPDATE_pn-ghostscript = "Oct 19, 2011"
-RECIPE_MANUAL_CHECK_DATE_pn = "Oct 19, 2011"
+RECIPE_MANUAL_CHECK_DATE_pn-ghostscript = "Oct 19, 2011"
RECIPE_STATUS_pn-createrepo = "green"
RECIPE_LATEST_VERSION_pn-createrepo = "0.9.9"
--
1.7.6.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] wget: Fix wget alternative path to be /usr/bin not /bin
2011-12-06 6:16 [PATCH 0/2] Small fixes (could be for M1) Saul Wold
2011-12-06 6:16 ` [PATCH 1/2] distro_tracking: fix manual entries Saul Wold
@ 2011-12-06 6:16 ` Saul Wold
2011-12-06 18:47 ` [PATCH 0/2] Small fixes (could be for M1) Richard Purdie
2 siblings, 0 replies; 4+ messages in thread
From: Saul Wold @ 2011-12-06 6:16 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
meta/recipes-extended/wget/wget.inc | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/meta/recipes-extended/wget/wget.inc b/meta/recipes-extended/wget/wget.inc
index d9eee80..91400cc 100644
--- a/meta/recipes-extended/wget/wget.inc
+++ b/meta/recipes-extended/wget/wget.inc
@@ -3,7 +3,7 @@ SECTION = "console/network"
LICENSE = "GPL"
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
-INC_PR = "r10"
+INC_PR = "r11"
inherit autotools gettext update-alternatives
@@ -15,6 +15,6 @@ do_install_append () {
}
ALTERNATIVE_NAME = "wget"
-ALTERNATIVE_LINK = "${base_bindir}/wget"
-ALTERNATIVE_PATH = "${base_bindir}/wget.${PN}"
+ALTERNATIVE_LINK = "${bindir}/wget"
+ALTERNATIVE_PATH = "${bindir}/wget.${PN}"
ALTERNATIVE_PRIORITY = "100"
--
1.7.6.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 0/2] Small fixes (could be for M1)
2011-12-06 6:16 [PATCH 0/2] Small fixes (could be for M1) Saul Wold
2011-12-06 6:16 ` [PATCH 1/2] distro_tracking: fix manual entries Saul Wold
2011-12-06 6:16 ` [PATCH 2/2] wget: Fix wget alternative path to be /usr/bin not /bin Saul Wold
@ 2011-12-06 18:47 ` Richard Purdie
2 siblings, 0 replies; 4+ messages in thread
From: Richard Purdie @ 2011-12-06 18:47 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer; +Cc: openembedded-core
On Mon, 2011-12-05 at 22:16 -0800, Saul Wold wrote:
> Richard,
>
> These are a couple of things I found in distro_tracking (with
> Jiajun's help) and wget was pointing to the wrong place, would
> be good for the self-hosted build.
>
> Sau!
>
> The following changes since commit 0a7a8597be05c8def8af58eecab49d963dc9d757:
>
> libsdl: Disable pulseaudio explicitly (2011-12-05 23:03:23 +0000)
>
> are available in the git repository at:
> git://git.openembedded.org/openembedded-core-contrib sgw/fix
> http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/fix
>
> Saul Wold (2):
> distro_tracking: fix manual entries
> wget: Fix wget alternative path to be /usr/bin not /bin
Merged to master, thanks.
Richard
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-12-06 18:54 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-06 6:16 [PATCH 0/2] Small fixes (could be for M1) Saul Wold
2011-12-06 6:16 ` [PATCH 1/2] distro_tracking: fix manual entries Saul Wold
2011-12-06 6:16 ` [PATCH 2/2] wget: Fix wget alternative path to be /usr/bin not /bin Saul Wold
2011-12-06 18:47 ` [PATCH 0/2] Small fixes (could be for M1) Richard Purdie
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.