From: Daiki Ueno Date: Fri, 18 Dec 2015 22:42:27 +0000 (+0900) Subject: non-recursive-gnulib-prefix-hack: preserve V_GPERF lines X-Git-Tag: v1.0~6880 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=284866e96d4cbcf3ee82f7cf735c66cffd90b24c;p=gnulib.git 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 --- 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. }