diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-01-29 00:42:05 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-01-29 00:42:05 +0100 |
commit | b8f4479a17e1add06e1532a00ae913cc0f4e9567 (patch) | |
tree | c724d7e1cb053b35cefd87d02109abac846fe0a5 /vendor/librune/test | |
parent | 3d9a150f522278f8ab37e299f9aa187931ea2d56 (diff) |
Bump librune
Diffstat (limited to 'vendor/librune/test')
-rwxr-xr-x | vendor/librune/test/tests | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vendor/librune/test/tests b/vendor/librune/test/tests index e728773..5affe3a 100755 --- a/vendor/librune/test/tests +++ b/vendor/librune/test/tests @@ -13,7 +13,8 @@ readonly src=../data/GraphemeBreakTest.txt set -e cd "${0%/*}" -find ../lib -name '*.c' -exec cc -I../include -o gbrk gbrk.c {} + +find ../lib -name '*.c' -exec \ + cc -std=c2x -Wno-attributes -I../include -o gbrk gbrk.c {} + trap 'rm -f gbrk' EXIT n=$( |