* [meta-oe,meta-systemd][PATCH] systemd: inherit pythonnative
@ 2012-10-23 13:57 Martin Jansa
2012-10-23 14:03 ` [meta-oe, meta-systemd][PATCH] " Martin Jansa
0 siblings, 1 reply; 3+ messages in thread
From: Martin Jansa @ 2012-10-23 13:57 UTC (permalink / raw)
To: openembedded-devel
* otherwise configure uses python-config from host and passes wrong CFLAGS
see http://lists.linuxtogo.org/pipermail/openembedded-devel/2012-October/042058.html
for details
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
meta-systemd/recipes-core/systemd/systemd_git.bb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta-systemd/recipes-core/systemd/systemd_git.bb b/meta-systemd/recipes-core/systemd/systemd_git.bb
index efc2d95..b89bd76 100644
--- a/meta-systemd/recipes-core/systemd/systemd_git.bb
+++ b/meta-systemd/recipes-core/systemd/systemd_git.bb
@@ -19,9 +19,9 @@ inherit gitpkgv
PKGV = "v${GITPKGVTAG}"
PV = "git"
-PR = "r8"
+PR = "r9"
-inherit useradd pkgconfig autotools perlnative
+inherit useradd pkgconfig autotools perlnative pythonnative
SRCREV = "4d92e078e9d7e9a9d346065ea5e4afbafbdadb48"
SRC_URI = "git://anongit.freedesktop.org/systemd/systemd;protocol=git \
--
1.7.12.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [meta-oe, meta-systemd][PATCH] systemd: inherit pythonnative
2012-10-23 13:57 [meta-oe,meta-systemd][PATCH] systemd: inherit pythonnative Martin Jansa
@ 2012-10-23 14:03 ` Martin Jansa
2012-10-23 15:41 ` [meta-oe,meta-systemd][PATCH] systemd: disable python Martin Jansa
0 siblings, 1 reply; 3+ messages in thread
From: Martin Jansa @ 2012-10-23 14:03 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 1490 bytes --]
On Tue, Oct 23, 2012 at 03:57:31PM +0200, Martin Jansa wrote:
> * otherwise configure uses python-config from host and passes wrong CFLAGS
> see http://lists.linuxtogo.org/pipermail/openembedded-devel/2012-October/042058.html
> for details
>
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
> meta-systemd/recipes-core/systemd/systemd_git.bb | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/meta-systemd/recipes-core/systemd/systemd_git.bb b/meta-systemd/recipes-core/systemd/systemd_git.bb
> index efc2d95..b89bd76 100644
> --- a/meta-systemd/recipes-core/systemd/systemd_git.bb
> +++ b/meta-systemd/recipes-core/systemd/systemd_git.bb
> @@ -19,9 +19,9 @@ inherit gitpkgv
> PKGV = "v${GITPKGVTAG}"
>
> PV = "git"
> -PR = "r8"
> +PR = "r9"
>
> -inherit useradd pkgconfig autotools perlnative
> +inherit useradd pkgconfig autotools perlnative pythonnative
Ah, ignore this one.. python-config from native is not right one to use
too. It fails a bit later when looking for Python.h..
Anyone against disabling python in systemd?
AC_ARG_WITH([python],
[AS_HELP_STRING([--without-python], [Disable building the man
page index and systemd-python (default: test)])])
Cheers,
>
> SRCREV = "4d92e078e9d7e9a9d346065ea5e4afbafbdadb48"
> SRC_URI = "git://anongit.freedesktop.org/systemd/systemd;protocol=git \
> --
> 1.7.12.4
>
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* [meta-oe,meta-systemd][PATCH] systemd: disable python
2012-10-23 14:03 ` [meta-oe, meta-systemd][PATCH] " Martin Jansa
@ 2012-10-23 15:41 ` Martin Jansa
0 siblings, 0 replies; 3+ messages in thread
From: Martin Jansa @ 2012-10-23 15:41 UTC (permalink / raw)
To: openembedded-devel
* otherwise configure uses python-config from host and passes wrong CFLAGS
see http://lists.linuxtogo.org/pipermail/openembedded-devel/2012-October/042058.html
for details
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
meta-systemd/recipes-core/systemd/systemd_git.bb | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/meta-systemd/recipes-core/systemd/systemd_git.bb b/meta-systemd/recipes-core/systemd/systemd_git.bb
index efc2d95..6deda82 100644
--- a/meta-systemd/recipes-core/systemd/systemd_git.bb
+++ b/meta-systemd/recipes-core/systemd/systemd_git.bb
@@ -19,7 +19,7 @@ inherit gitpkgv
PKGV = "v${GITPKGVTAG}"
PV = "git"
-PR = "r8"
+PR = "r9"
inherit useradd pkgconfig autotools perlnative
@@ -67,6 +67,7 @@ EXTRA_OECONF = " --with-distro=${SYSTEMDDISTRO} \
--disable-tcpwrap \
--enable-split-usr \
--disable-microhttpd \
+ --without-python \
"
# There's no docbook-xsl-native, so for the xsltproc check to false
--
1.7.12.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-10-23 15:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-23 13:57 [meta-oe,meta-systemd][PATCH] systemd: inherit pythonnative Martin Jansa
2012-10-23 14:03 ` [meta-oe, meta-systemd][PATCH] " Martin Jansa
2012-10-23 15:41 ` [meta-oe,meta-systemd][PATCH] systemd: disable python Martin Jansa
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.