diff options
author | Robert Pluim <rpluim@gmail.com> | 2021-09-17 19:35:27 +0200 |
---|---|---|
committer | Robert Pluim <rpluim@gmail.com> | 2021-09-17 19:35:27 +0200 |
commit | 6f2068fcb16961d345d5288bb26ed456c4369b51 (patch) | |
tree | 159b83ff5dbe619d08192221ab913b1b0814f00c /admin | |
parent | aa59d38c598f77cf1afbcb664e1ad73ed42ada52 (diff) | |
download | emacs-6f2068fcb16961d345d5288bb26ed456c4369b51.tar.gz emacs-6f2068fcb16961d345d5288bb26ed456c4369b51.tar.bz2 emacs-6f2068fcb16961d345d5288bb26ed456c4369b51.zip |
Fix emoji-induced build breakage
* admin/unidata/blocks.awk: Cater for out-of-tree builds, match
the name of the file using regexp rather than exact match.
Diffstat (limited to 'admin')
-rwxr-xr-x | admin/unidata/blocks.awk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/unidata/blocks.awk b/admin/unidata/blocks.awk index 72a808ab61c..575f7142f4a 100755 --- a/admin/unidata/blocks.awk +++ b/admin/unidata/blocks.awk @@ -131,7 +131,7 @@ function name2alias(name , w, w2) { return name } -FILENAME == "Blocks.txt" && /^[0-9A-F]/ { +FILENAME ~ "Blocks.txt" && /^[0-9A-F]/ { sep = index($1, "..") len = length($1) s = substr($1,1,sep-1) @@ -204,10 +204,10 @@ FILENAME == "Blocks.txt" && /^[0-9A-F]/ { # The space after 'Emoji' is significant in the next two rules. # This purposely and deliberately excludes codepoints <= 00FF -FILENAME == "emoji-data.txt" && /^00[0-9A-F]{2}.*; Emoji / { +FILENAME ~ "emoji-data.txt" && /^00[0-9A-F]{2}.*; Emoji / { next } -FILENAME == "emoji-data.txt" && /^[0-9A-F].*; Emoji / { +FILENAME ~ "emoji-data.txt" && /^[0-9A-F].*; Emoji / { sep = index($1, "..") len = length($1) if (sep > 0) { |