* [meta-oe][PATCH 0/2] 2 fixes for meta-oe
@ 2015-05-26 8:19 Yi Zhao
2015-05-26 8:19 ` [meta-oe][PATCH 1/2] smstools: fix makefile override Yi Zhao
2015-05-26 8:19 ` [meta-oe][PATCH 2/2] acpitests: fix build failure for multilib Yi Zhao
0 siblings, 2 replies; 4+ messages in thread
From: Yi Zhao @ 2015-05-26 8:19 UTC (permalink / raw)
To: openembedded-devel
The following changes since commit 175406cdca39bf5b218bb4127a3e9c9bd11b653f:
recipes-multimedia: add gstreamer-0.10 recipes (2015-05-22 20:14:07 +0200)
are available in the git repository at:
git://git.openembedded.org/meta-openembedded-contrib yzhao/2-fixes
http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=yzhao/2-fixes
Yi Zhao (2):
smstools: fix makefile override
acpitests: fix build failure for multilib
.../smstools3/fix-makefile-override.patch | 24 ++++++++++++++++++++
.../smstools3/smstools3_3.1.15.bb | 3 ++-
.../recipes-extended/acpica/acpitests_20140828.bb | 2 +-
3 files changed, 27 insertions(+), 2 deletions(-)
create mode 100644 meta-oe/recipes-connectivity/smstools3/smstools3/fix-makefile-override.patch
--
1.7.9.5
^ permalink raw reply [flat|nested] 4+ messages in thread
* [meta-oe][PATCH 1/2] smstools: fix makefile override
2015-05-26 8:19 [meta-oe][PATCH 0/2] 2 fixes for meta-oe Yi Zhao
@ 2015-05-26 8:19 ` Yi Zhao
2015-05-26 8:19 ` [meta-oe][PATCH 2/2] acpitests: fix build failure for multilib Yi Zhao
1 sibling, 0 replies; 4+ messages in thread
From: Yi Zhao @ 2015-05-26 8:19 UTC (permalink / raw)
To: openembedded-devel
Fix syntax error in src/Makefile, override in wrong place.
The patch is backport from debian.
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
---
.../smstools3/fix-makefile-override.patch | 24 ++++++++++++++++++++
.../smstools3/smstools3_3.1.15.bb | 3 ++-
2 files changed, 26 insertions(+), 1 deletion(-)
create mode 100644 meta-oe/recipes-connectivity/smstools3/smstools3/fix-makefile-override.patch
diff --git a/meta-oe/recipes-connectivity/smstools3/smstools3/fix-makefile-override.patch b/meta-oe/recipes-connectivity/smstools3/smstools3/fix-makefile-override.patch
new file mode 100644
index 0000000..f0a1d33
--- /dev/null
+++ b/meta-oe/recipes-connectivity/smstools3/smstools3/fix-makefile-override.patch
@@ -0,0 +1,24 @@
+Upstream-Status: Backport [debian]
+
+--- a/src/Makefile
++++ b/src/Makefile
+@@ -37,16 +37,15 @@
+ # Use the following only on GNU/Linux and only if you need ps listing like "smsd: MAINPROCESS" and "smsd: GSM1"
+ # CFLAGS += -D USE_LINUX_PS_TRICK
+
+-all: smsd
+-
+-smsd: smsd.c extras.o locking.o cfgfile.o logging.o alarm.o smsd_cfg.o charset.o stats.o blacklist.o whitelist.o modeminit.o pdu.o
+-
+ ifneq (,$(findstring SOLARIS,$(CFLAGS)))
+ ifeq (,$(findstring DISABLE_INET_SOCKET,$(CFLAGS)))
+ override LFLAGS += -lsocket -lnsl
+ endif
+ endif
+
++all: smsd
++
++smsd: smsd.c extras.o locking.o cfgfile.o logging.o alarm.o smsd_cfg.o charset.o stats.o blacklist.o whitelist.o modeminit.o pdu.o
+ ifneq (,$(findstring NOSTATS,$(CFLAGS)))
+ $(CC) $(CFLAGS) -o $@ $^ $(LFLAGS)
+ else
diff --git a/meta-oe/recipes-connectivity/smstools3/smstools3_3.1.15.bb b/meta-oe/recipes-connectivity/smstools3/smstools3_3.1.15.bb
index c4b6b60..95adecd 100644
--- a/meta-oe/recipes-connectivity/smstools3/smstools3_3.1.15.bb
+++ b/meta-oe/recipes-connectivity/smstools3/smstools3_3.1.15.bb
@@ -6,7 +6,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=4d21efa1bb2a186360dde4035f860682"
HOMEPAGE = "http://smstools3.kekekasvi.com"
SRC_URI = "http://smstools3.kekekasvi.com/packages/${BP}.tar.gz \
- file://sms_binpath_and_psops.patch"
+ file://sms_binpath_and_psops.patch \
+ file://fix-makefile-override.patch"
SRC_URI[md5sum] = "0241ef60e646fac1a06254a848e61ed7"
SRC_URI[sha256sum] = "ed00ffaeaa312a5b4f969f4e97a64603a866bbe16e393ea02f5bf05234814d59"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 4+ messages in thread* [meta-oe][PATCH 2/2] acpitests: fix build failure for multilib
2015-05-26 8:19 [meta-oe][PATCH 0/2] 2 fixes for meta-oe Yi Zhao
2015-05-26 8:19 ` [meta-oe][PATCH 1/2] smstools: fix makefile override Yi Zhao
@ 2015-05-26 8:19 ` Yi Zhao
1 sibling, 0 replies; 4+ messages in thread
From: Yi Zhao @ 2015-05-26 8:19 UTC (permalink / raw)
To: openembedded-devel
bitbake lib32-acpitests
[snip]
| NOTE: make -j 2 -m32 OPT_CFLAGS=-Wall
| make: *** No rule to make target ` -m32'. Stop.
| ERROR: oe_runmake failed
[snip]
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
---
.../recipes-extended/acpica/acpitests_20140828.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta-oe/recipes-extended/acpica/acpitests_20140828.bb b/meta-oe/recipes-extended/acpica/acpitests_20140828.bb
index da26582..1f6f190 100644
--- a/meta-oe/recipes-extended/acpica/acpitests_20140828.bb
+++ b/meta-oe/recipes-extended/acpica/acpitests_20140828.bb
@@ -18,7 +18,7 @@ SRC_URI[acpica.sha256sum] = "01d8867656c5ba41dec307c4383ce676196ad4281ac2c9dec9f
S = "${WORKDIR}/acpitests-unix-${PV}"
-EXTRA_OEMAKE = "'${HOST_CC_ARCH}' 'OPT_CFLAGS=-Wall'"
+EXTRA_OEMAKE = "'CC=${TARGET_PREFIX}gcc ${HOST_CC_ARCH} ${TOOLCHAIN_OPTIONS}' 'OPT_CFLAGS=-Wall'"
# The Makefiles expect a specific layout
do_compile() {
--
1.7.9.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [meta-oe][PATCH 0/2] 2 fixes for meta-oe
@ 2015-12-30 8:49 Yi Zhao
0 siblings, 0 replies; 4+ messages in thread
From: Yi Zhao @ 2015-12-30 8:49 UTC (permalink / raw)
To: openembedded-devel
The following changes since commit edaa0d80b3d9060a163460989a6eb93a9d763479:
mpd: add dependency on libupnp (2015-12-18 12:52:52 +0100)
are available in the git repository at:
git://git.openembedded.org/meta-openembedded-contrib yzhao/meta-oe-fixes
http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=yzhao/2-fixes
Yi Zhao (2):
polkit-gnome: remove unrecognized configure options
libvncserver: fix PN -> BPN for multilib
.../recipes-extended/polkit/polkit-gnome_0.105.bb | 4 ----
.../libvncserver/libvncserver_0.9.10.bb | 2 +-
2 files changed, 1 insertion(+), 5 deletions(-)
--
1.7.9.5
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-12-30 8:49 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-26 8:19 [meta-oe][PATCH 0/2] 2 fixes for meta-oe Yi Zhao
2015-05-26 8:19 ` [meta-oe][PATCH 1/2] smstools: fix makefile override Yi Zhao
2015-05-26 8:19 ` [meta-oe][PATCH 2/2] acpitests: fix build failure for multilib Yi Zhao
-- strict thread matches above, loose matches on Subject: below --
2015-12-30 8:49 [meta-oe][PATCH 0/2] 2 fixes for meta-oe Yi Zhao
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.