mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
3b245e4fe8
Refresh all patches. Remove openipmigui-not-compile-pyc-pyo.patch and do-not-install-pyc-and-pyo.patch as the issues had been fixed upstream. Add ipmi_serial_bmc_emu.c-include-readline.h-from-readli.patch to fix the build error. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
49 lines
1.8 KiB
Diff
49 lines
1.8 KiB
Diff
From 6395659ca6d64b20bf78bb640c2cc523d6c1d9c2 Mon Sep 17 00:00:00 2001
|
|
From: Jackie Huang <jackie.huang@windriver.com>
|
|
Date: Mon, 29 Dec 2014 18:16:04 +0800
|
|
Subject: [PATCH] remove host path from la_LDFLAGS
|
|
|
|
Upstream-Status: Inappropriate [ cross compile specific ]
|
|
|
|
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
|
|
---
|
|
cmdlang/Makefile.am | 3 +--
|
|
unix/Makefile.am | 6 ++----
|
|
2 files changed, 3 insertions(+), 6 deletions(-)
|
|
|
|
diff --git a/cmdlang/Makefile.am b/cmdlang/Makefile.am
|
|
index d9a941f..21b9531 100644
|
|
--- a/cmdlang/Makefile.am
|
|
+++ b/cmdlang/Makefile.am
|
|
@@ -15,8 +15,7 @@ libOpenIPMIcmdlang_la_SOURCES = cmdlang.c cmd_domain.c cmd_entity.c cmd_mc.c \
|
|
libOpenIPMIcmdlang_la_LIBADD = -lm \
|
|
$(top_builddir)/utils/libOpenIPMIutils.la \
|
|
$(top_builddir)/lib/libOpenIPMI.la
|
|
-libOpenIPMIcmdlang_la_LDFLAGS = -rdynamic -version-info $(LD_VERSION) \
|
|
- -L$(libdir)
|
|
+libOpenIPMIcmdlang_la_LDFLAGS = -rdynamic -version-info $(LD_VERSION)
|
|
|
|
bin_PROGRAMS = openipmish
|
|
|
|
diff --git a/unix/Makefile.am b/unix/Makefile.am
|
|
index 5128839..bd0f897 100644
|
|
--- a/unix/Makefile.am
|
|
+++ b/unix/Makefile.am
|
|
@@ -10,14 +10,12 @@ lib_LTLIBRARIES = libOpenIPMIposix.la libOpenIPMIpthread.la
|
|
libOpenIPMIpthread_la_SOURCES = posix_thread_os_hnd.c selector.c
|
|
libOpenIPMIpthread_la_LIBADD = -lpthread $(GDBM_LIB) \
|
|
$(top_builddir)/utils/libOpenIPMIutils.la $(RT_LIB)
|
|
-libOpenIPMIpthread_la_LDFLAGS = -rdynamic -version-info $(LD_VERSION) \
|
|
- -L$(libdir)
|
|
+libOpenIPMIpthread_la_LDFLAGS = -rdynamic -version-info $(LD_VERSION)
|
|
|
|
libOpenIPMIposix_la_SOURCES = posix_os_hnd.c selector.c
|
|
libOpenIPMIposix_la_LIBADD = $(top_builddir)/utils/libOpenIPMIutils.la \
|
|
$(GDBM_LIB) $(RT_LIB)
|
|
-libOpenIPMIposix_la_LDFLAGS = -rdynamic -version-info $(LD_VERSION) \
|
|
- -L$(libdir)
|
|
+libOpenIPMIposix_la_LDFLAGS = -rdynamic -version-info $(LD_VERSION)
|
|
|
|
noinst_HEADERS = heap.h
|
|
|