summaryrefslogtreecommitdiff
path: root/modules/unicase
diff options
context:
space:
mode:
authorDarshit Shah <darnir@gnu.org>2022-02-25 15:36:25 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2022-02-25 15:38:30 -0800
commitc5c11d644737e04258f411ab8584f5ed816135ab (patch)
treef18ce04e0912e0d597c012da9808852bfe223c3b /modules/unicase
parentd125d4f6d1a5d9845824aaf1d1c9dc69699bf2f1 (diff)
downloadgnulib-c5c11d644737e04258f411ab8584f5ed816135ab.tar.gz
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.
Diffstat (limited to 'modules/unicase')
-rw-r--r--modules/unicase/special-casing2
1 files changed, 1 insertions, 1 deletions
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 $@