1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-06-19 16:26:36 +02:00

Fix small build bug and bump to v0.11.1

This commit is contained in:
jfreegman
2021-06-28 16:04:25 -04:00
parent 8dfd009e0e
commit 768617a129
5 changed files with 11 additions and 9 deletions

View File

@ -19,6 +19,8 @@ ifneq ($(AUDIO), disabled)
ifneq ($(VIDEO), disabled)
-include $(CHECKS_DIR)/video.mk
endif
endif
endif
#check if we want to build with game support
GAMES := $(shell if [ -z "$(DISABLE_GAMES)" ] || [ "$(DISABLE_GAMES)" = "0" ] ; then echo enabled ; else echo disabled ; fi)
@ -26,9 +28,6 @@ ifneq ($(GAMES), disabled)
-include $(CHECKS_DIR)/games.mk
endif
endif
endif
# Check if we want build sound notifications support
SND_NOTIFY := $(shell if [ -z "$(DISABLE_SOUND_NOTIFY)" ] || [ "$(DISABLE_SOUND_NOTIFY)" = "0" ] ; then echo enabled ; else echo disabled ; fi)
ifneq ($(SND_NOTIFY), disabled)