Don't ignore errors when building executable

pull/435/head
Andras Fekete 2024-04-22 10:42:27 -04:00
parent 953b896d86
commit e9ef698710
1 changed files with 2 additions and 2 deletions

View File

@ -34,9 +34,9 @@ debug: all
%-shared: CFLAGS+=-pthread
%-shared: LIBS+=-lpthread
# try to build the libevent server. "|| true" ignores the error return.
# try to build the libevent server
server-dtls13-event: server-dtls13-event.c
$(CC) -o $@ $< $(CFLAGS) $(LIBS) -levent || true
$(CC) -o $@ $< $(CFLAGS) $(LIBS) -levent
# build template
%: %.c