From 284866e96d4cbcf3ee82f7cf735c66cffd90b24c Mon Sep 17 00:00:00 2001 From: Daiki Ueno Date: Sat, 19 Dec 2015 07:42:27 +0900 Subject: [PATCH] non-recursive-gnulib-prefix-hack: preserve V_GPERF lines * build-aux/prefix-gnulib-mk (prefix_assignment): Don't change the RHS of 'V_GPERF.* = ' lines. Reported by Assaf Gordon in: https://lists.gnu.org/archive/html/bug-gnulib/2015-12/msg00015.html --- build-aux/prefix-gnulib-mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-aux/prefix-gnulib-mk b/build-aux/prefix-gnulib-mk index 8af2916f31..0ac81a88f8 100755 --- a/build-aux/prefix-gnulib-mk +++ b/build-aux/prefix-gnulib-mk @@ -91,7 +91,7 @@ sub prefix_assignment ($$) # Some variables are initialized by gnulib.mk, and we don't want # that. Change '=' to '+='. - if ($lhs_and_assign_op =~ /^GPERF =$/) + if ($lhs_and_assign_op =~ /^(GPERF|V_GPERF.*) =$/) { # Do not change the RHS, which specifies the GPERF program. } -- 2.39.5