diff options
author | Bian Naimeng <biannm@cn.fujitsu.com> | 2015-06-24 16:26:34 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-07-16 21:09:05 +0200 |
commit | 3f83d88dcb91b633407b417a22c327cd27c1f3c9 (patch) | |
tree | a974ed2992eaf7a71c18fefdf50266449470579d /meta-ruby | |
parent | 8b05b3d580f5259dd522d0991b3db0baee345d16 (diff) | |
download | meta-openembedded-3f83d88dcb91b633407b417a22c327cd27c1f3c9.tar.gz |
imsettings: fix build error.
multi-line ACLOCAL_AMFLAGS isn't supported by autoreconf, otherwise
a configure error as follow will be caught.
aclocal: error: non-option arguments are not accepted: '\'.
Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-ruby')
-rw-r--r-- | meta-ruby/recipes-extended/imsettings/imsettings/multi-line-ACLOCAL_AMFLAGS-isnot-supported-by-autoreconf.patch | 21 | ||||
-rw-r--r-- | meta-ruby/recipes-extended/imsettings/imsettings_1.6.8.bb | 3 |
2 files changed, 23 insertions, 1 deletions
diff --git a/meta-ruby/recipes-extended/imsettings/imsettings/multi-line-ACLOCAL_AMFLAGS-isnot-supported-by-autoreconf.patch b/meta-ruby/recipes-extended/imsettings/imsettings/multi-line-ACLOCAL_AMFLAGS-isnot-supported-by-autoreconf.patch new file mode 100644 index 0000000000..9e318474e4 --- /dev/null +++ b/meta-ruby/recipes-extended/imsettings/imsettings/multi-line-ACLOCAL_AMFLAGS-isnot-supported-by-autoreconf.patch | |||
@@ -0,0 +1,21 @@ | |||
1 | multi-line ACLOCAL_AMFLAGS isn't supported by autoreconf. | ||
2 | It will cause configure error as follow. | ||
3 | |||
4 | aclocal: error: non-option arguments are not accepted: '\'. | ||
5 | |||
6 | Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com> | ||
7 | |||
8 | diff -Nurp imsettings-1.6.8.orig/Makefile.am imsettings-1.6.8/Makefile.am | ||
9 | --- imsettings-1.6.8.orig/Makefile.am 2013-02-08 11:33:59.000000000 +0900 | ||
10 | +++ imsettings-1.6.8/Makefile.am 2015-06-24 14:15:32.070000007 +0900 | ||
11 | @@ -1,9 +1,7 @@ | ||
12 | NULL = | ||
13 | SUBDIRS = data imsettings imsettings-daemon backends utils po tests docs | ||
14 | |||
15 | -ACLOCAL_AMFLAGS = \ | ||
16 | - -I m4macros \ | ||
17 | - $(NULL) | ||
18 | +ACLOCAL_AMFLAGS = -I m4macros $(NULL) | ||
19 | |||
20 | CONFIGURE_DEPENDENCIES = \ | ||
21 | requires \ | ||
diff --git a/meta-ruby/recipes-extended/imsettings/imsettings_1.6.8.bb b/meta-ruby/recipes-extended/imsettings/imsettings_1.6.8.bb index 91443d7b6e..64a229bd0b 100644 --- a/meta-ruby/recipes-extended/imsettings/imsettings_1.6.8.bb +++ b/meta-ruby/recipes-extended/imsettings/imsettings_1.6.8.bb | |||
@@ -10,7 +10,8 @@ SECTION = "Applications/System" | |||
10 | inherit autotools gtk-doc | 10 | inherit autotools gtk-doc |
11 | 11 | ||
12 | SRC_URI = "https://bitbucket.org/tagoh/imsettings/downloads/${BPN}-${PV}.tar.bz2 \ | 12 | SRC_URI = "https://bitbucket.org/tagoh/imsettings/downloads/${BPN}-${PV}.tar.bz2 \ |
13 | file://gtk-is-required-by-notify.patch" | 13 | file://gtk-is-required-by-notify.patch \ |
14 | file://multi-line-ACLOCAL_AMFLAGS-isnot-supported-by-autoreconf.patch" | ||
14 | 15 | ||
15 | SRC_URI[md5sum] = "c31429f1d60e36d7f811f871c75b6c41" | 16 | SRC_URI[md5sum] = "c31429f1d60e36d7f811f871c75b6c41" |
16 | SRC_URI[sha256sum] = "2620ffbf9a6dc842dbf994b4773d4fe355eb77076ccf33f726ba63f16c0d08ba" | 17 | SRC_URI[sha256sum] = "2620ffbf9a6dc842dbf994b4773d4fe355eb77076ccf33f726ba63f16c0d08ba" |