[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] modules/unicase/special-casing: Fix compilation error
From: |
Darshit Shah |
Subject: |
[PATCH] modules/unicase/special-casing: Fix compilation error |
Date: |
Fri, 25 Feb 2022 23:16:55 +0100 |
* 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 49a1e6a168..55442c84dd 100644
--- 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>
nanosleep: simplify by using pselect
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.35.1
- [PATCH] modules/unicase/special-casing: Fix compilation error,
Darshit Shah <=