mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Commit 8f88a644ed "support/scripts/apply-patches.sh: set the maximum
fuzz factor to 0" reduced the fuzz factor.
Due to this change, poke fails to build with output:
Applying 0001-configure.ac-HELP2MAN-replace-by-true-when-cross-com.patch using patch:
patching file configure.ac
Hunk #1 FAILED at 90.
1 out of 1 hunk FAILED -- saving rejects to file configure.ac.rej
This commit refreshes the package patches on the current package
version.
The patch 0002 was described as specific to Buildroot. This commit
adds the "Upstream:" tag and removes the corresponding
".checkpackageignore" entry.
Fixes:
http://autobuild.buildroot.org/results/ace4a0efffb66dcebf873a2baa33b5edfe670093
Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Romain Naour <romain.naour@smile.fr>
37 lines
1011 B
Diff
37 lines
1011 B
Diff
From a7e29f73dab5f9bd4fc7a2407f1ed2022c4ff109 Mon Sep 17 00:00:00 2001
|
|
From: Romain Naour <romain.naour@gmail.com>
|
|
Date: Fri, 30 Apr 2021 15:43:59 +0200
|
|
Subject: [PATCH] configure.ac: HELP2MAN replace ':' by 'true' when
|
|
cross-compiling
|
|
|
|
Avoid:
|
|
/usr/bin/make ./../poke/poke
|
|
../run \
|
|
: -p poke --name="The GNU extensible binary editor" \
|
|
./../poke/poke -o ./poke.1
|
|
../run: line 51: exec: :: not found
|
|
|
|
Signed-off-by: Romain Naour <romain.naour@gmail.com>
|
|
[Julien: refreshed the patch to be applied with fuzz factor 0]
|
|
Signed-off-by: Julien Olivain <ju.o@free.fr>
|
|
---
|
|
configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 71b4d86..6487b57 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -88,7 +88,7 @@ gl_LIBTEXTSTYLE_OPTIONAL([0.20.5])
|
|
if test $cross_compiling = no; then
|
|
AM_MISSING_PROG(HELP2MAN, help2man)
|
|
else
|
|
- HELP2MAN=:
|
|
+ HELP2MAN=true
|
|
fi
|
|
|
|
dnl The following Automake conditional is used in some Makefile.am files
|
|
--
|
|
2.45.2
|
|
|