Skip to content

Commit

Permalink
Fix more errors in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
abbec committed May 14, 2024
1 parent 2ac4437 commit b5de6c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ SOURCES = src/dged/binding.c src/dged/buffer.c src/dged/command.c src/dged/displ

MAIN_SOURCES = src/main/main.c src/main/cmds.c src/main/bindings.c src/main/search-replace.c src/main/completion.c

.if $(HAS_EPOLL) == true
.if "$(HAS_EPOLL)" == true
MAIN_SOURCES += src/dged/reactor-epoll.c
.elif $(HAS_KQUEUE) == true
.elif "$(HAS_KQUEUE)" == true
MAIN_SOURCES += src/dged/reactor-kqueue.c
.endif

Expand Down

0 comments on commit b5de6c2

Please sign in to comment.