Skip to content

Commit fac4510

Browse files
committed
Fix missing endif
1 parent 5786352 commit fac4510

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,15 @@ ifeq ($(UNAME_S),Darwin)
6262
ifeq (0, $(call check-coreaudio))
6363
$(warning No CoreAudio framework installed.)
6464
ENABLE_VIRTIOSND := 0
65+
endif
6566
endif
6667
$(call set-feature, VIRTIOSND)
6768
ifeq ($(call has, VIRTIOSND), 1)
6869
OBJS_EXTRA += virtio-snd.o
6970

7071
ifeq ($(UNAME_S),Linux)
7172
LDFLAGS += -lasound -lpthread
72-
else ifeq($(UNAME_S),Darwin)
73+
else ifeq ($(UNAME_S),Darwin)
7374
LDFLAGS += lpthread
7475
CFLAGS += -framework CoreAudio
7576
endif

0 commit comments

Comments
 (0)