]> Savannah Git Hosting - gnulib.git/commitdiff
modules/unicase/special-casing: Fix compilation error
authorDarshit Shah <darnir@gnu.org>
Fri, 25 Feb 2022 23:36:25 +0000 (15:36 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 25 Feb 2022 23:38:30 +0000 (15:38 -0800)
* 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
modules/unicase/special-casing

index 0b8525e92641bc55343709ca6ee5277cc725cc32..6daf85da3e8bcb35305e9906e98f8a5c645627ce 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2022-02-25  Darshit Shah  <darnir@gnu.org>
+
+       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  <eggert@cs.ucla.edu>
 
        Port __has_attribute to Apple’s Clang renumbering
index 68847852076dc7937764966e31b8ca7e3777cb46..0a2bdbd23903ee5e1661f5a0ad5a1002f103e74f 100644 (file)
@@ -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 $@