Skip to content

Commit 5c7578e

Browse files
author
Daniel Kiper
committed
bootstrap: Fix patching warnings
Currently bootstrap complains in the following way when patching gnulib files: patching file argp-help.c Hunk #1 succeeded at 52 (offset 1 line). Hunk #2 succeeded at 1548 (offset 115 lines). patching file mbswidth.c patching file mbswidth.h Hunk #1 succeeded at 40 (offset -5 lines). Let's fix it by amending line numbers in the patch. Signed-off-by: Daniel Kiper <daniel.kiper@oracle.com> Reviewed-by: Alec Brown <alec.r.brown@oracle.com>
1 parent 6d8853e commit 5c7578e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

grub-core/lib/gnulib-patches/fix-width.patch

+3-3
Original file line numberDiff line numberDiff line change
@@ -143,15 +143,15 @@ diff --git a/lib/argp-help.c b/lib/argp-help.c
143143
index e5375a0f0..5d8f451ec 100644
144144
--- a/lib/argp-help.c
145145
+++ b/lib/argp-help.c
146-
@@ -51,6 +51,7 @@
146+
@@ -52,6 +52,7 @@
147147
#include "argp.h"
148148
#include "argp-fmtstream.h"
149149
#include "argp-namefrob.h"
150150
+#include "mbswidth.h"
151151

152152
#ifndef SIZE_MAX
153153
# define SIZE_MAX ((size_t) -1)
154-
@@ -1432,7 +1433,7 @@ argp_args_usage (const struct argp *argp, const struct argp_state *state,
154+
@@ -1547,7 +1548,7 @@ argp_args_usage (const struct argp *argp, const struct argp_state *state,
155155

156156
/* Manually do line wrapping so that it (probably) won't get wrapped at
157157
any embedded spaces. */
@@ -204,7 +204,7 @@ diff --git a/lib/mbswidth.h b/lib/mbswidth.h
204204
index 2b5c53c37..45a123e63 100644
205205
--- a/lib/mbswidth.h
206206
+++ b/lib/mbswidth.h
207-
@@ -45,6 +45,10 @@ extern "C" {
207+
@@ -40,6 +40,10 @@ extern "C" {
208208
control characters and 1 otherwise. */
209209
#define MBSW_REJECT_UNPRINTABLE 2
210210

0 commit comments

Comments
 (0)