From 24355a9ef9985a8feeef760c3708e0379b442ba7 Mon Sep 17 00:00:00 2001 From: Darshit Shah Date: Fri, 25 Feb 2022 15:36:25 -0800 Subject: [PATCH] modules/unicase/special-casing: Fix compilation error * modules/unicase/special-casing: Don't prepend $(AM_V_at) to the second part of a compound command. It causes make to try and execute the command "@sed" which doesn't exist. --- ChangeLog | 7 +++++++ modules/unicase/special-casing | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0c5064d0f6..b1e7012a1d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2022-02-25 Darshit Shah + + modules/unicase/special-casing: Fix compilation error + * modules/unicase/special-casing: Don't prepend $(AM_V_at) to the + second part of a compound command. It causes make to try and + execute the command "@sed" which doesn't exist. + 2022-02-25 Paul Eggert Port __has_attribute to Apple’s Clang renumbering diff --git a/modules/unicase/special-casing b/modules/unicase/special-casing index 6884785207..0a2bdbd239 100644 --- a/modules/unicase/special-casing +++ b/modules/unicase/special-casing @@ -28,7 +28,7 @@ EXTRA_DIST += unicase/special-casing-table.h unicase/special-casing.h: unicase/special-casing.in.h unicase/special-casing-table.h $(AM_V_GEN)$(MKDIR_P) '%reldir%/unicase' $(AM_V_at)declaration=`grep '^gl_unicase_special_lookup' $(srcdir)/unicase/special-casing-table.h | sed -e 's/register //g'` && \ - $(AM_V_at)$(SED_HEADER_STDOUT) \ + $(SED_HEADER_STDOUT) \ -e "/gl_unicase_special_lookup/s/gl_unicase_special_lookup.*/$${declaration};/" \ $(srcdir)/unicase/special-casing.in.h > $@-t $(AM_V_at)mv $@-t $@ -- 2.39.5