Skip to content

Commit e9ef698

Browse files
author
Andras Fekete
committed
Don't ignore errors when building executable
1 parent 953b896 commit e9ef698

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

dtls/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ debug: all
3434
%-shared: CFLAGS+=-pthread
3535
%-shared: LIBS+=-lpthread
3636

37-
# try to build the libevent server. "|| true" ignores the error return.
37+
# try to build the libevent server
3838
server-dtls13-event: server-dtls13-event.c
39-
$(CC) -o $@ $< $(CFLAGS) $(LIBS) -levent || true
39+
$(CC) -o $@ $< $(CFLAGS) $(LIBS) -levent
4040

4141
# build template
4242
%: %.c

0 commit comments

Comments
 (0)