mirror of
https://git.yoctoproject.org/poky
synced 2026-05-05 07:39:49 +02:00
This patch is made by AUH and rebased the following patches: 0001-configure-Use-autoconf-macro-to-detect-largefile-sup.patch 0001-strace-fix-reproducibilty-issues.patch 0002-tests-Replace-off64_t-with-off_t.patch Makefile-ptest.patch ptest-spacesave.patch skip-load.patch update-gawk-paths.patch (From OE-Core rev: 5efe057e6cf0b5f217d9a5af0cec93b92435ad62) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
37 lines
1.1 KiB
Diff
37 lines
1.1 KiB
Diff
From d5f681c2de834110de260f4d071c7bc1fb0d7564 Mon Sep 17 00:00:00 2001
|
|
From: Jeremy Puhlman <jpuhlman@mvista.com>
|
|
Date: Wed, 11 Mar 2020 19:56:55 +0000
|
|
Subject: [PATCH] strace: fix reproducibilty issues
|
|
|
|
The full path to the gen_tests.sh script is encoded in the tests
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com>
|
|
---
|
|
tests/gen_tests.sh | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/tests/gen_tests.sh b/tests/gen_tests.sh
|
|
index 8f47651..65267db 100755
|
|
--- a/tests/gen_tests.sh
|
|
+++ b/tests/gen_tests.sh
|
|
@@ -46,7 +46,7 @@ while read -r name arg0 args; do {
|
|
|
|
hdr="\
|
|
#!/bin/sh -efu
|
|
-# Generated by $0 from $input ($name $arg0 $args); do not edit."
|
|
+# Generated by $(basename $0) from $input ($name $arg0 $args); do not edit."
|
|
|
|
case "$arg0" in
|
|
+*)
|
|
@@ -91,7 +91,7 @@ while read -r name arg0 args; do {
|
|
|
|
if [ -n "$names" ]; then
|
|
{
|
|
- printf '# Generated by %s from %s; do not edit.\n' "$0" "$input"
|
|
+ printf '# Generated by %s from %s; do not edit.\n' "$(basename $0)" "$input"
|
|
printf 'GEN_TESTS ='
|
|
printf ' %s.gen.test' $names
|
|
echo
|