diff options
| author | Bernhard Voelker <mail@bernhard-voelker.de> | 2024-10-06 16:09:26 +0200 |
|---|---|---|
| committer | Bernhard Voelker <mail@bernhard-voelker.de> | 2024-10-06 16:09:26 +0200 |
| commit | 0911361e79cddc2ffeab043f9ff120c19431384a (patch) | |
| tree | c812e50e4c2a8d017a207fdece3ee2be1f76cba8 | |
| parent | ls: fix spurious output with -Z (diff) | |
| download | coreutils-0911361e79cddc2ffeab043f9ff120c19431384a.tar.gz coreutils-0911361e79cddc2ffeab043f9ff120c19431384a.zip | |
maint: adjust check-ls-dircolors to recent change in ls.c
'make distcheck' would fail since commit 75b34c77e43a, because the
comparison by check-ls-dircolors fails.
* Makefile.am (check-ls-dircolors): Adjust sed(1) expression to the
changed data initialization.
| -rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 3fd546599..d17353e1c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -133,7 +133,8 @@ check-ls-dircolors: |sed -n 's/^"\(..\)"/\1/p'|sort -u); \ ls=$$(sed -n '/static.*indicator_name\[/,/};'/\p \ $(srcdir)/src/ls.c \ - |sed -n '/^ *"/p'|tr , '\n'|sed 's/^ *//' \ + |sed -n '/^ *{/ { s/{.\([a-z]\).,.\([a-z]\).}/"\1\2"/g; p; }' \ + |tr , '\n'|sed 's/^ *//' \ |sed -n 's/^"\(..\)"/\1/p'|sort -u); \ test "$$dc" = "$$ls" |
