mirror of
git://git.yoctoproject.org/poky
synced 2026-09-07 21:34:02 +00:00
- Updated update-gawk-paths.patch. - Updated Makefile-ptest.patch - Removed 0008-replace-struct-ucontext-with-ucontext_t.patch which is already in the source. - The LIC_FILES_CHKSUM is changed because the years have been updated, the contents are the same. (From OE-Core rev: 111e4a8642160c8441e447da32a4ef52995bbe99) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
127 lines
3.7 KiB
Diff
127 lines
3.7 KiB
Diff
From 3836518c46bd5bb3e71371b1b18274bf2d487133 Mon Sep 17 00:00:00 2001
|
|
From: Andre McCurdy <armccurdy@gmail.com>
|
|
Date: Mon, 18 Jan 2016 11:01:00 -0800
|
|
Subject: [PATCH] update gawk paths, /bin/gawk -> /usr/bin/gawk
|
|
|
|
The default path to gawk is /usr/bin/gawk, so update test scripts etc
|
|
from #!/bin/gawk to #!/usr/bin/gawk. Fixes missing RDPENDS QA tests:
|
|
|
|
WARNING: QA Issue: /usr/lib/strace/ptest/tests/unix-yy-accept.awk_strace-ptest contained in package strace-ptest requires /bin/gawk, but no providers found in its RDEPENDS [file-rdeps]
|
|
|
|
Upstream-Status: Inappropriate [configuration]
|
|
|
|
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
|
|
---
|
|
mpers.awk | 2 +-
|
|
tests-m32/caps.awk | 2 +-
|
|
tests-m32/match.awk | 2 +-
|
|
tests-m32/rt_sigaction.awk | 2 +-
|
|
tests-mx32/caps.awk | 2 +-
|
|
tests-mx32/match.awk | 2 +-
|
|
tests-mx32/rt_sigaction.awk | 2 +-
|
|
tests/caps.awk | 2 +-
|
|
tests/match.awk | 2 +-
|
|
tests/rt_sigaction.awk | 2 +-
|
|
10 files changed, 10 insertions(+), 10 deletions(-)
|
|
|
|
diff --git a/mpers.awk b/mpers.awk
|
|
index fe54763..b5238a8 100644
|
|
--- a/mpers.awk
|
|
+++ b/mpers.awk
|
|
@@ -1,4 +1,4 @@
|
|
-#!/bin/gawk
|
|
+#!/usr/bin/gawk
|
|
#
|
|
# Copyright (c) 2015 Elvira Khabirova <lineprinter0@gmail.com>
|
|
# Copyright (c) 2015-2016 Dmitry V. Levin <ldv@altlinux.org>
|
|
diff --git a/tests-m32/caps.awk b/tests-m32/caps.awk
|
|
index c6e31ef..5efc6cc 100644
|
|
--- a/tests-m32/caps.awk
|
|
+++ b/tests-m32/caps.awk
|
|
@@ -1,4 +1,4 @@
|
|
-#!/bin/gawk
|
|
+#!/usr/bin/gawk
|
|
#
|
|
# This file is part of caps strace test.
|
|
#
|
|
diff --git a/tests-m32/match.awk b/tests-m32/match.awk
|
|
index abfbae9..f2740bf 100644
|
|
--- a/tests-m32/match.awk
|
|
+++ b/tests-m32/match.awk
|
|
@@ -1,4 +1,4 @@
|
|
-#!/bin/gawk
|
|
+#!/usr/bin/gawk
|
|
#
|
|
# Copyright (c) 2014-2015 Dmitry V. Levin <ldv@altlinux.org>
|
|
# All rights reserved.
|
|
diff --git a/tests-m32/rt_sigaction.awk b/tests-m32/rt_sigaction.awk
|
|
index 9c3a9ed..8414243 100644
|
|
--- a/tests-m32/rt_sigaction.awk
|
|
+++ b/tests-m32/rt_sigaction.awk
|
|
@@ -1,4 +1,4 @@
|
|
-#!/bin/gawk
|
|
+#!/usr/bin/gawk
|
|
#
|
|
# Copyright (c) 2014-2015 Dmitry V. Levin <ldv@altlinux.org>
|
|
# Copyright (c) 2016 Elvira Khabirova <lineprinter0@gmail.com>
|
|
diff --git a/tests-mx32/caps.awk b/tests-mx32/caps.awk
|
|
index c6e31ef..5efc6cc 100644
|
|
--- a/tests-mx32/caps.awk
|
|
+++ b/tests-mx32/caps.awk
|
|
@@ -1,4 +1,4 @@
|
|
-#!/bin/gawk
|
|
+#!/usr/bin/gawk
|
|
#
|
|
# This file is part of caps strace test.
|
|
#
|
|
diff --git a/tests-mx32/match.awk b/tests-mx32/match.awk
|
|
index abfbae9..f2740bf 100644
|
|
--- a/tests-mx32/match.awk
|
|
+++ b/tests-mx32/match.awk
|
|
@@ -1,4 +1,4 @@
|
|
-#!/bin/gawk
|
|
+#!/usr/bin/gawk
|
|
#
|
|
# Copyright (c) 2014-2015 Dmitry V. Levin <ldv@altlinux.org>
|
|
# All rights reserved.
|
|
diff --git a/tests-mx32/rt_sigaction.awk b/tests-mx32/rt_sigaction.awk
|
|
index 9c3a9ed..8414243 100644
|
|
--- a/tests-mx32/rt_sigaction.awk
|
|
+++ b/tests-mx32/rt_sigaction.awk
|
|
@@ -1,4 +1,4 @@
|
|
-#!/bin/gawk
|
|
+#!/usr/bin/gawk
|
|
#
|
|
# Copyright (c) 2014-2015 Dmitry V. Levin <ldv@altlinux.org>
|
|
# Copyright (c) 2016 Elvira Khabirova <lineprinter0@gmail.com>
|
|
diff --git a/tests/caps.awk b/tests/caps.awk
|
|
index c6e31ef..5efc6cc 100644
|
|
--- a/tests/caps.awk
|
|
+++ b/tests/caps.awk
|
|
@@ -1,4 +1,4 @@
|
|
-#!/bin/gawk
|
|
+#!/usr/bin/gawk
|
|
#
|
|
# This file is part of caps strace test.
|
|
#
|
|
diff --git a/tests/match.awk b/tests/match.awk
|
|
index abfbae9..f2740bf 100644
|
|
--- a/tests/match.awk
|
|
+++ b/tests/match.awk
|
|
@@ -1,4 +1,4 @@
|
|
-#!/bin/gawk
|
|
+#!/usr/bin/gawk
|
|
#
|
|
# Copyright (c) 2014-2015 Dmitry V. Levin <ldv@altlinux.org>
|
|
# All rights reserved.
|
|
diff --git a/tests/rt_sigaction.awk b/tests/rt_sigaction.awk
|
|
index 9c3a9ed..8414243 100644
|
|
--- a/tests/rt_sigaction.awk
|
|
+++ b/tests/rt_sigaction.awk
|
|
@@ -1,4 +1,4 @@
|
|
-#!/bin/gawk
|
|
+#!/usr/bin/gawk
|
|
#
|
|
# Copyright (c) 2014-2015 Dmitry V. Levin <ldv@altlinux.org>
|
|
# Copyright (c) 2016 Elvira Khabirova <lineprinter0@gmail.com>
|