diff options
Diffstat (limited to 'meta/recipes-devtools/openjade')
-rw-r--r-- | meta/recipes-devtools/openjade/openjade-1.3.2/fix-regex.patch | 32 | ||||
-rw-r--r-- | meta/recipes-devtools/openjade/openjade-native_1.3.2.bb | 3 |
2 files changed, 34 insertions, 1 deletions
diff --git a/meta/recipes-devtools/openjade/openjade-1.3.2/fix-regex.patch b/meta/recipes-devtools/openjade/openjade-1.3.2/fix-regex.patch new file mode 100644 index 0000000000..6b40afdad8 --- /dev/null +++ b/meta/recipes-devtools/openjade/openjade-1.3.2/fix-regex.patch | |||
@@ -0,0 +1,32 @@ | |||
1 | From 55f6fd8f1958aa36584eefeecce782a505963c88 Mon Sep 17 00:00:00 2001 | ||
2 | From: benvm <benvm@yow-gmoffatt-lx2.wrs.com> | ||
3 | Date: Wed, 9 Jan 2013 12:14:06 -0500 | ||
4 | Subject: [PATCH] Fix Makefile regular expression | ||
5 | |||
6 | This patch modifies a regular expression within a Makefile to stop builds | ||
7 | from failing in the case where the path contains the characters ".a". | ||
8 | |||
9 | Upstream-Status: Submitted | ||
10 | |||
11 | Signed-off-by: Kai Kang <kai.kang@windriver.com> | ||
12 | |||
13 | --- | ||
14 | Makefile.prog.in | 2 +- | ||
15 | 1 files changed, 1 insertions(+), 1 deletions(-) | ||
16 | |||
17 | diff --git a/Makefile.prog.in b/Makefile.prog.in | ||
18 | index 76310c9..44c3534 100644 | ||
19 | --- a/Makefile.prog.in | ||
20 | +++ b/Makefile.prog.in | ||
21 | @@ -12,7 +12,7 @@ LINKFLAGS = @LINKFLAGS@ | ||
22 | |||
23 | ALL_LIBS = $(XLIBS) $(LIBS) | ||
24 | Makefile.lt: | ||
25 | - echo 'LT_LIBS='`echo $(ALL_LIBS)|sed 's/\.a/.la/g'` >Makefile.lt | ||
26 | + echo 'LT_LIBS='`echo $(ALL_LIBS) | sed 's/\.a\s/\.la /g' | sed s/\.a$$/\.la/` > Makefile.lt | ||
27 | |||
28 | PROG:=$(shell echo "$(PROG)" | sed '@program_transform_name@') | ||
29 | |||
30 | -- | ||
31 | 1.7.0.4 | ||
32 | |||
diff --git a/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb b/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb index 266210d7c6..8af0b52640 100644 --- a/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb +++ b/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb | |||
@@ -16,7 +16,8 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/openjade/openjade-${PV}.tar.gz \ | |||
16 | file://makefile.patch \ | 16 | file://makefile.patch \ |
17 | file://msggen.pl.patch \ | 17 | file://msggen.pl.patch \ |
18 | file://reautoconf.patch \ | 18 | file://reautoconf.patch \ |
19 | file://user-declared-default-constructor.patch" | 19 | file://user-declared-default-constructor.patch \ |
20 | file://fix-regex.patch" | ||
20 | 21 | ||
21 | SRC_URI[md5sum] = "7df692e3186109cc00db6825b777201e" | 22 | SRC_URI[md5sum] = "7df692e3186109cc00db6825b777201e" |
22 | SRC_URI[sha256sum] = "1d2d7996cc94f9b87d0c51cf0e028070ac177c4123ecbfd7ac1cb8d0b7d322d1" | 23 | SRC_URI[sha256sum] = "1d2d7996cc94f9b87d0c51cf0e028070ac177c4123ecbfd7ac1cb8d0b7d322d1" |