Files
poky/meta/recipes-devtools/openjade/openjade-1.3.2/makefile.patch
Scott Garman a0da8e7e8f recipes: add Upstream-Status to various recipe patches
Add Upstream-Status tag to patches for the following recipes:

apmd
insserv
linuxdoc-tools
openjade
sgmlspl
at
sudo

(From OE-Core rev: 89ff546de3ce6b1c441f04d7a153c4f8d514a749)

Signed-off-by: Scott Garman <scott.a.garman@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-05-18 14:32:46 +01:00

40 lines
1.2 KiB
Diff

This patch fixes libtool QA issues with WORKDIR creeping in to
libospgrove.la and libostyle.la. Patch obtained from OpenEmbedded.
Upstream-Status: Inappropriate [Other]
Workaround is specific to our build system.
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
Index: openjade-1.3.2/spgrove/Makefile.sub
===================================================================
--- openjade-1.3.2.orig/spgrove/Makefile.sub
+++ openjade-1.3.2/spgrove/Makefile.sub
@@ -1,8 +1,8 @@
LTVERSION=0:1:0
LIB=ospgrove
INCLUDE=-I$(srcdir)/../grove
-DEPLIBS=-lm -L$(TOP)/grove -L$(TOP)/grove/.libs \
- -L$(TOP)/lib -L$(TOP)/lib/.libs \
+DEPLIBS=-lm $(TOP)/grove \
+ $(TOP)/lib \
$(LIB_THREADS)
OBJS=GroveApp.o GroveBuilder.o SdNode.o
GENSRCS=grove_inst.cxx
Index: openjade-1.3.2/style/Makefile.sub
===================================================================
--- openjade-1.3.2.orig/style/Makefile.sub
+++ openjade-1.3.2/style/Makefile.sub
@@ -1,8 +1,8 @@
LTVERSION=0:1:0
LIB=ostyle
-DEPLIBS=-lm -L$(TOP)/grove -L$(TOP)/grove/.libs \
- -L$(TOP)/lib -L$(TOP)/lib/.libs \
- -L$(TOP)/spgrove -L$(TOP)/spgrove/.libs
+DEPLIBS=-lm $(TOP)/grove \
+ $(TOP)/lib \
+ $(TOP)/spgrove
OBJS=LangObj.o \
Collector.o \
DssslApp.o \