luci-lua-runtime: specify c17 standard

build was failing b/c gcc15 defaults to c23, which lemon is not written for (and errors with).

Signed-off-by: Andrew Robbins <andrew@robbinsa.me>
pull/7730/head
Andrew Robbins 2025-04-15 02:13:06 -04:00 committed by Paul Donald
parent 7e6741fbae
commit 852fc23b12
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
$(CC) $(CPPFLAGS) $(CFLAGS) $(FPIC) -DNDEBUG -c -o $@ $<
contrib/lemon: contrib/lemon.c contrib/lempar.c
cc -o contrib/lemon $<
cc -std=gnu17 -o contrib/lemon $<
plural_formula.c: plural_formula.y contrib/lemon
./contrib/lemon -q $<