Skip to content

Commit 746f89c

Browse files
committed
Debug
1 parent c0dbc6c commit 746f89c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ ifeq ($(call has, VIRTIOSND), 1)
8282
ifeq ($(UNAME_S),Linux)
8383
LDFLAGS += -lasound -lrt
8484
# Check PulseAudio installation
85-
ifeq (1, $(call check-pa))
85+
ifeq (0, $(call check-pa))
8686
LDFLAGS += -lpulse
8787
endif
8888
endif

mk/check-libs.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ endef
4141

4242
# Check PulseAudio installation
4343
define check-pa
44-
$(shell $(call create-pa-prog) | $(CC) -x c -lpulse -o /dev/null > /dev/null 2> /dev/null -
45-
&& echo 0 || echo 1)
44+
$(shell $(call create-pa-prog) | $(CC) -x c -lpulse -o /dev/null
45+
&& echo 1 || echo 0)
4646
endef
4747

4848
# Check CoreAudio installation

0 commit comments

Comments
 (0)