All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH] x11vnc: remove redundant RPATH to fix QA issue
@ 2016-06-27  8:57 Hongxu Jia
  2016-06-28  8:19 ` [PATCH V2] " Hongxu Jia
  0 siblings, 1 reply; 4+ messages in thread
From: Hongxu Jia @ 2016-06-27  8:57 UTC (permalink / raw)
  To: openembedded-devel

The useless rpath caused oe QA issue:
...
|ERROR: QA Issue: x11vnc: work/i586-poky-linux/x11vnc/0.9.13-r0/packages-split/
x11vnc/usr/bin/x11vnc contains probably-redundant RPATH /usr/lib [useless-rpaths]
...

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
---
 .../x11vnc/files/remove-redundant-RPATH.patch      | 71 ++++++++++++++++++++++
 meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb   |  4 +-
 2 files changed, 74 insertions(+), 1 deletion(-)
 create mode 100644 meta-oe/recipes-graphics/x11vnc/files/remove-redundant-RPATH.patch

diff --git a/meta-oe/recipes-graphics/x11vnc/files/remove-redundant-RPATH.patch b/meta-oe/recipes-graphics/x11vnc/files/remove-redundant-RPATH.patch
new file mode 100644
index 0000000..4b14c92
--- /dev/null
+++ b/meta-oe/recipes-graphics/x11vnc/files/remove-redundant-RPATH.patch
@@ -0,0 +1,71 @@
+From aaca2889c15abab52bfa8fa92b3add4b7d242bea Mon Sep 17 00:00:00 2001
+From: Hongxu Jia <hongxu.jia@windriver.com>
+Date: Mon, 27 Jun 2016 04:44:14 -0400
+Subject: [PATCH] configure.ac: remove redundant RPATH
+
+It caused oe QA issue:
+...
+|ERROR: QA Issue: x11vnc: work/i586-poky-linux/x11vnc/0.9.13-r0/packages-split/
+x11vnc/usr/bin/x11vnc contains probably-redundant RPATH /usr/lib [useless-rpaths]
+...
+
+Upstream-Status: Inappropriate [oe specific]
+
+Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
+---
+ configure.ac | 11 +++++------
+ 1 file changed, 5 insertions(+), 6 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 6f664d0..3cb1ea3 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -333,7 +333,7 @@ if test "x$with_crypto" != "xno" -a "x$with_ssl" != "xno"; then
+ 		if test "x$ld_minus_R" = "xno"; then
+ 			:
+ 		elif test "x$GCC" = "xyes"; then
+-			LDFLAGS="$LDFLAGS -Xlinker -R$with_ssl/lib"
++			:
+ 		else
+ 			LDFLAGS="$LDFLAGS -R$with_ssl/lib"
+ 		fi
+@@ -450,7 +450,7 @@ if test ! -z "$with_system_libvncserver" -a "x$with_system_libvncserver" != "xno
+ 		if test "x$ld_minus_R" = "xno"; then
+ 			:
+ 		elif test "x$GCC" = "xyes"; then
+-			rflag="-Xlinker -R$with_system_libvncserver/lib"
++			:
+ 		else
+ 			rflag="-R$with_system_libvncserver/lib"
+ 		fi
+@@ -487,7 +487,7 @@ new enough.
+ 		if test "x$ld_minus_R" = "xno"; then
+ 			:
+ 		elif test "x$GCC" = "xyes"; then
+-			rflag=" -Xlinker -R$rprefix/lib "
++			:
+ 		else
+ 			rflag=" -R$rprefix/lib "
+ 		fi
+@@ -544,8 +544,7 @@ if test "x$with_jpeg" != "xno"; then
+ 		if test "x$ld_minus_R" = "xno"; then
+ 			:
+ 		elif test "x$GCC" = "xyes"; then
+-			# this is not complete... in general a rat's nest.
+-			LDFLAGS="$LDFLAGS -Xlinker -R$with_jpeg/lib"
++			:
+ 		else
+ 			LDFLAGS="$LDFLAGS -R$with_jpeg/lib"
+ 		fi
+@@ -593,7 +592,7 @@ if test "x$with_zlib" != "xno" -a "x$with_libz" != "xno"; then
+ 		if test "x$ld_minus_R" = "xno"; then
+ 			:
+ 		elif test "x$GCC" = "xyes"; then
+-			LDFLAGS="$LDFLAGS -Xlinker -R$with_zlib/lib"
++			:
+ 		else
+ 			LDFLAGS="$LDFLAGS -R$with_zlib/lib"
+ 		fi
+-- 
+2.8.1
+
diff --git a/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb b/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb
index 64c8a5d..98a0734 100644
--- a/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb
+++ b/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb
@@ -9,7 +9,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f \
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/libvncserver/x11vnc/${PV}/x11vnc-${PV}.tar.gz\
            file://starting-fix.patch \
-           file://endian-fix.patch "
+           file://endian-fix.patch \
+           file://remove-redundant-RPATH.patch \
+"
 
 SRC_URI[md5sum] = "a372ec4fe8211221547b1c108cf56e4c"
 SRC_URI[sha256sum] = "f6829f2e629667a5284de62b080b13126a0736499fe47cdb447aedb07a59f13b"
-- 
2.8.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH V2] x11vnc: remove redundant RPATH to fix QA issue
  2016-06-27  8:57 [meta-oe][PATCH] x11vnc: remove redundant RPATH to fix QA issue Hongxu Jia
@ 2016-06-28  8:19 ` Hongxu Jia
  2016-07-24 12:05   ` Martin Jansa
  0 siblings, 1 reply; 4+ messages in thread
From: Hongxu Jia @ 2016-06-28  8:19 UTC (permalink / raw)
  To: openembedded-devel

The useless rpath caused oe QA issue:
...
|ERROR: QA Issue: x11vnc: work/i586-poky-linux/x11vnc/0.9.13-r0/packages-split/
x11vnc/usr/bin/x11vnc contains probably-redundant RPATH /usr/lib [useless-rpaths]
...

In oe build, it is unnecessary and redundant to pass "-R/usr/lib" to the linker.

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
---
 .../x11vnc/files/remove-redundant-RPATH.patch      | 86 ++++++++++++++++++++++
 meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb   |  4 +-
 2 files changed, 89 insertions(+), 1 deletion(-)
 create mode 100644 meta-oe/recipes-graphics/x11vnc/files/remove-redundant-RPATH.patch

diff --git a/meta-oe/recipes-graphics/x11vnc/files/remove-redundant-RPATH.patch b/meta-oe/recipes-graphics/x11vnc/files/remove-redundant-RPATH.patch
new file mode 100644
index 0000000..8e894bd
--- /dev/null
+++ b/meta-oe/recipes-graphics/x11vnc/files/remove-redundant-RPATH.patch
@@ -0,0 +1,86 @@
+From 7be055c13c7d0d640941830a3291af3b404928c1 Mon Sep 17 00:00:00 2001
+From: Hongxu Jia <hongxu.jia@windriver.com>
+Date: Mon, 27 Jun 2016 04:44:14 -0400
+Subject: [PATCH] configure.ac: remove redundant RPATH
+
+It caused oe QA issue:
+...
+|ERROR: QA Issue: x11vnc: work/i586-poky-linux/x11vnc/0.9.13-r0/packages-split/
+x11vnc/usr/bin/x11vnc contains probably-redundant RPATH /usr/lib [useless-rpaths]
+...
+
+Upstream-Status: Inappropriate [oe specific]
+
+Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
+---
+ configure.ac | 21 +++++----------------
+ 1 file changed, 5 insertions(+), 16 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 6f664d0..f986686 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -330,10 +330,8 @@ if test "x$with_crypto" != "xno" -a "x$with_ssl" != "xno"; then
+ 		saved_LDFLAGS="$LDFLAGS"
+ 		CPPFLAGS="$CPPFLAGS -I$with_ssl/include"
+ 		LDFLAGS="$LDFLAGS -L$with_ssl/lib"
+-		if test "x$ld_minus_R" = "xno"; then
++		if test "x$ld_minus_R" = "xno" -o "x$GCC" = "xyes"; then
+ 			:
+-		elif test "x$GCC" = "xyes"; then
+-			LDFLAGS="$LDFLAGS -Xlinker -R$with_ssl/lib"
+ 		else
+ 			LDFLAGS="$LDFLAGS -R$with_ssl/lib"
+ 		fi
+@@ -447,10 +445,8 @@ if test ! -z "$with_system_libvncserver" -a "x$with_system_libvncserver" != "xno
+ 	fi
+ 	if test "x$with_system_libvncserver" != "xyes"; then
+ 		rflag=""
+-		if test "x$ld_minus_R" = "xno"; then
++		if test "x$ld_minus_R" = "xno" -o "x$GCC" = "xyes"; then
+ 			:
+-		elif test "x$GCC" = "xyes"; then
+-			rflag="-Xlinker -R$with_system_libvncserver/lib"
+ 		else
+ 			rflag="-R$with_system_libvncserver/lib"
+ 		fi
+@@ -484,10 +480,8 @@ new enough.
+ 	elif libvncserver-config --version 1>/dev/null 2>&1; then
+ 		rflag=""
+ 		rprefix=`libvncserver-config --prefix`
+-		if test "x$ld_minus_R" = "xno"; then
++		if test "x$ld_minus_R" = "xno" -o "x$GCC" = "xyes"; then
+ 			:
+-		elif test "x$GCC" = "xyes"; then
+-			rflag=" -Xlinker -R$rprefix/lib "
+ 		else
+ 			rflag=" -R$rprefix/lib "
+ 		fi
+@@ -541,11 +535,8 @@ if test "x$with_jpeg" != "xno"; then
+ 		saved_LDFLAGS="$LDFLAGS"
+ 		CPPFLAGS="$CPPFLAGS -I$with_jpeg/include"
+ 		LDFLAGS="$LDFLAGS -L$with_jpeg/lib"
+-		if test "x$ld_minus_R" = "xno"; then
++		if test "x$ld_minus_R" = "xno" -o "x$GCC" = "xyes"; then
+ 			:
+-		elif test "x$GCC" = "xyes"; then
+-			# this is not complete... in general a rat's nest.
+-			LDFLAGS="$LDFLAGS -Xlinker -R$with_jpeg/lib"
+ 		else
+ 			LDFLAGS="$LDFLAGS -R$with_jpeg/lib"
+ 		fi
+@@ -590,10 +581,8 @@ if test "x$with_zlib" != "xno" -a "x$with_libz" != "xno"; then
+ 		saved_LDFLAGS="$LDFLAGS"
+ 		CPPFLAGS="$CPPFLAGS -I$with_zlib/include"
+ 		LDFLAGS="$LDFLAGS -L$with_zlib/lib"
+-		if test "x$ld_minus_R" = "xno"; then
++		if test "x$ld_minus_R" = "xno" -o "x$GCC" = "xyes"; then
+ 			:
+-		elif test "x$GCC" = "xyes"; then
+-			LDFLAGS="$LDFLAGS -Xlinker -R$with_zlib/lib"
+ 		else
+ 			LDFLAGS="$LDFLAGS -R$with_zlib/lib"
+ 		fi
+-- 
+2.8.1
+
diff --git a/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb b/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb
index 64c8a5d..98a0734 100644
--- a/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb
+++ b/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb
@@ -9,7 +9,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f \
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/libvncserver/x11vnc/${PV}/x11vnc-${PV}.tar.gz\
            file://starting-fix.patch \
-           file://endian-fix.patch "
+           file://endian-fix.patch \
+           file://remove-redundant-RPATH.patch \
+"
 
 SRC_URI[md5sum] = "a372ec4fe8211221547b1c108cf56e4c"
 SRC_URI[sha256sum] = "f6829f2e629667a5284de62b080b13126a0736499fe47cdb447aedb07a59f13b"
-- 
2.8.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH V2] x11vnc: remove redundant RPATH to fix QA issue
  2016-06-28  8:19 ` [PATCH V2] " Hongxu Jia
@ 2016-07-24 12:05   ` Martin Jansa
  2016-07-25  4:34     ` [PATCH] x11vnc: fix do_patch failed Hongxu Jia
  0 siblings, 1 reply; 4+ messages in thread
From: Martin Jansa @ 2016-07-24 12:05 UTC (permalink / raw)
  To: Hongxu Jia; +Cc: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 6489 bytes --]

On Tue, Jun 28, 2016 at 04:19:58AM -0400, Hongxu Jia wrote:
> The useless rpath caused oe QA issue:
> ...
> |ERROR: QA Issue: x11vnc: work/i586-poky-linux/x11vnc/0.9.13-r0/packages-split/
> x11vnc/usr/bin/x11vnc contains probably-redundant RPATH /usr/lib [useless-rpaths]
> ...
> 
> In oe build, it is unnecessary and redundant to pass "-R/usr/lib" to the linker.

Probably not caused by this change, but for some reason x11vnc now fails
with:

| NOTE: Applying patch 'starting-fix.patch' (meta-openembedded/meta-oe/recipes-graphics/x11vnc/files/starting-fix.patch)
| NOTE: Applying patch 'endian-fix.patch' (meta-openembedded/meta-oe/recipes-graphics/x11vnc/files/endian-fix.patch)
| NOTE: Applying patch 'remove-redundant-RPATH.patch' (meta-openembedded/meta-oe/recipes-graphics/x11vnc/files/remove-redundant-RPATH.patch)
| DEBUG: Python function patch_do_patch finished
| DEBUG: Python function do_patch finished
| DEBUG: SITE files ['endian-little', 'bit-32', 'arm-common', 'arm-32', 'common-linux', 'common-glibc', 'arm-linux', 'arm-linux-gnueabi', 'common']
| DEBUG: Executing shell function do_prepare_sources
| sed: can't read acinclude.m4: No such file or directory
| WARNING: exit code 2 from a shell command.
| ERROR: Function failed: do_prepare_sources (log file is located at /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/x11vnc/0.9.13-r0/temp/log.do_patch.3859)
NOTE: recipe x11vnc-0.9.13-r0: task do_patch: Failed
ERROR: Task /home/jenkins/oe/world/shr-core/meta-openembedded/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb:do_patch (/home/jenkins/oe/world/shr-core/meta-openembedded/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb:do_patch) failed with exit code '1'


> 
> Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
> ---
>  .../x11vnc/files/remove-redundant-RPATH.patch      | 86 ++++++++++++++++++++++
>  meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb   |  4 +-
>  2 files changed, 89 insertions(+), 1 deletion(-)
>  create mode 100644 meta-oe/recipes-graphics/x11vnc/files/remove-redundant-RPATH.patch
> 
> diff --git a/meta-oe/recipes-graphics/x11vnc/files/remove-redundant-RPATH.patch b/meta-oe/recipes-graphics/x11vnc/files/remove-redundant-RPATH.patch
> new file mode 100644
> index 0000000..8e894bd
> --- /dev/null
> +++ b/meta-oe/recipes-graphics/x11vnc/files/remove-redundant-RPATH.patch
> @@ -0,0 +1,86 @@
> +From 7be055c13c7d0d640941830a3291af3b404928c1 Mon Sep 17 00:00:00 2001
> +From: Hongxu Jia <hongxu.jia@windriver.com>
> +Date: Mon, 27 Jun 2016 04:44:14 -0400
> +Subject: [PATCH] configure.ac: remove redundant RPATH
> +
> +It caused oe QA issue:
> +...
> +|ERROR: QA Issue: x11vnc: work/i586-poky-linux/x11vnc/0.9.13-r0/packages-split/
> +x11vnc/usr/bin/x11vnc contains probably-redundant RPATH /usr/lib [useless-rpaths]
> +...
> +
> +Upstream-Status: Inappropriate [oe specific]
> +
> +Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
> +---
> + configure.ac | 21 +++++----------------
> + 1 file changed, 5 insertions(+), 16 deletions(-)
> +
> +diff --git a/configure.ac b/configure.ac
> +index 6f664d0..f986686 100644
> +--- a/configure.ac
> ++++ b/configure.ac
> +@@ -330,10 +330,8 @@ if test "x$with_crypto" != "xno" -a "x$with_ssl" != "xno"; then
> + 		saved_LDFLAGS="$LDFLAGS"
> + 		CPPFLAGS="$CPPFLAGS -I$with_ssl/include"
> + 		LDFLAGS="$LDFLAGS -L$with_ssl/lib"
> +-		if test "x$ld_minus_R" = "xno"; then
> ++		if test "x$ld_minus_R" = "xno" -o "x$GCC" = "xyes"; then
> + 			:
> +-		elif test "x$GCC" = "xyes"; then
> +-			LDFLAGS="$LDFLAGS -Xlinker -R$with_ssl/lib"
> + 		else
> + 			LDFLAGS="$LDFLAGS -R$with_ssl/lib"
> + 		fi
> +@@ -447,10 +445,8 @@ if test ! -z "$with_system_libvncserver" -a "x$with_system_libvncserver" != "xno
> + 	fi
> + 	if test "x$with_system_libvncserver" != "xyes"; then
> + 		rflag=""
> +-		if test "x$ld_minus_R" = "xno"; then
> ++		if test "x$ld_minus_R" = "xno" -o "x$GCC" = "xyes"; then
> + 			:
> +-		elif test "x$GCC" = "xyes"; then
> +-			rflag="-Xlinker -R$with_system_libvncserver/lib"
> + 		else
> + 			rflag="-R$with_system_libvncserver/lib"
> + 		fi
> +@@ -484,10 +480,8 @@ new enough.
> + 	elif libvncserver-config --version 1>/dev/null 2>&1; then
> + 		rflag=""
> + 		rprefix=`libvncserver-config --prefix`
> +-		if test "x$ld_minus_R" = "xno"; then
> ++		if test "x$ld_minus_R" = "xno" -o "x$GCC" = "xyes"; then
> + 			:
> +-		elif test "x$GCC" = "xyes"; then
> +-			rflag=" -Xlinker -R$rprefix/lib "
> + 		else
> + 			rflag=" -R$rprefix/lib "
> + 		fi
> +@@ -541,11 +535,8 @@ if test "x$with_jpeg" != "xno"; then
> + 		saved_LDFLAGS="$LDFLAGS"
> + 		CPPFLAGS="$CPPFLAGS -I$with_jpeg/include"
> + 		LDFLAGS="$LDFLAGS -L$with_jpeg/lib"
> +-		if test "x$ld_minus_R" = "xno"; then
> ++		if test "x$ld_minus_R" = "xno" -o "x$GCC" = "xyes"; then
> + 			:
> +-		elif test "x$GCC" = "xyes"; then
> +-			# this is not complete... in general a rat's nest.
> +-			LDFLAGS="$LDFLAGS -Xlinker -R$with_jpeg/lib"
> + 		else
> + 			LDFLAGS="$LDFLAGS -R$with_jpeg/lib"
> + 		fi
> +@@ -590,10 +581,8 @@ if test "x$with_zlib" != "xno" -a "x$with_libz" != "xno"; then
> + 		saved_LDFLAGS="$LDFLAGS"
> + 		CPPFLAGS="$CPPFLAGS -I$with_zlib/include"
> + 		LDFLAGS="$LDFLAGS -L$with_zlib/lib"
> +-		if test "x$ld_minus_R" = "xno"; then
> ++		if test "x$ld_minus_R" = "xno" -o "x$GCC" = "xyes"; then
> + 			:
> +-		elif test "x$GCC" = "xyes"; then
> +-			LDFLAGS="$LDFLAGS -Xlinker -R$with_zlib/lib"
> + 		else
> + 			LDFLAGS="$LDFLAGS -R$with_zlib/lib"
> + 		fi
> +-- 
> +2.8.1
> +
> diff --git a/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb b/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb
> index 64c8a5d..98a0734 100644
> --- a/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb
> +++ b/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb
> @@ -9,7 +9,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f \
>  
>  SRC_URI = "${SOURCEFORGE_MIRROR}/libvncserver/x11vnc/${PV}/x11vnc-${PV}.tar.gz\
>             file://starting-fix.patch \
> -           file://endian-fix.patch "
> +           file://endian-fix.patch \
> +           file://remove-redundant-RPATH.patch \
> +"
>  
>  SRC_URI[md5sum] = "a372ec4fe8211221547b1c108cf56e4c"
>  SRC_URI[sha256sum] = "f6829f2e629667a5284de62b080b13126a0736499fe47cdb447aedb07a59f13b"
> -- 
> 2.8.1
> 

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] x11vnc: fix do_patch failed
  2016-07-24 12:05   ` Martin Jansa
@ 2016-07-25  4:34     ` Hongxu Jia
  0 siblings, 0 replies; 4+ messages in thread
From: Hongxu Jia @ 2016-07-25  4:34 UTC (permalink / raw)
  To: openembedded-devel

Since the following commit applied in bitbake:
--------
commit 2afcbfef2cd1ca568e5225884a8021df38ee3db0
Author: Ross Burton <ross.burton@intel.com>
Date:   Thu Jul 14 19:56:22 2016 +0100

    bitbake: build: don't use $B as the default cwd for functions
--------

We need to parse file with absolute path.

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
---
 meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb b/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb
index 98a0734..b047bc4 100644
--- a/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb
+++ b/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb
@@ -29,6 +29,6 @@ PACKAGECONFIG[libvncserver] = "--with-system-libvncserver,--without-system-libvn
 
 do_prepare_sources () {
     # Remove old libtool macros from acinclude.m4
-    sed -i -e '/^# libtool.m4/q' acinclude.m4
+    sed -i -e '/^# libtool.m4/q' ${S}/acinclude.m4
 }
 do_patch[postfuncs] += "do_prepare_sources"
-- 
2.8.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-07-25  4:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-27  8:57 [meta-oe][PATCH] x11vnc: remove redundant RPATH to fix QA issue Hongxu Jia
2016-06-28  8:19 ` [PATCH V2] " Hongxu Jia
2016-07-24 12:05   ` Martin Jansa
2016-07-25  4:34     ` [PATCH] x11vnc: fix do_patch failed Hongxu Jia

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.