From 284eac1c93ac019c2117bc590a131267ac9bcae8 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Sun, 11 Mar 2012 23:04:42 +0000 Subject: [PATCH] Fix check for Darwin in the tests makefile Originally committed to SVN as r6562. --- aegisub/tests/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/aegisub/tests/Makefile b/aegisub/tests/Makefile index 510fe1cb8..13c887bea 100644 --- a/aegisub/tests/Makefile +++ b/aegisub/tests/Makefile @@ -9,8 +9,7 @@ LDFLAGS += -Wl,-rpath $(CURDIR)/../libaegisub $(LDFLAGS_ICONV) CPPFLAGS += -I../src/include -I../libaegisub/include $(CFLAGS_ICONV) CXXFLAGS += -Wno-unused-value - -ifdef $(BUILD_DARWIN) +ifeq (yes, $(BUILD_DARWIN)) LDFLAGS += -framework ApplicationServices endif