summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Canciani <ranma42@gmail.com>2011-07-19 07:26:59 +0200
committerAndrea Canciani <ranma42@gmail.com>2011-07-19 07:26:59 +0200
commite5dfac245f8252a30e39f682f73a7e0065e7ffca (patch)
tree8439f43d7c66aae6207bc03f5b4039d4055847af
parent9ab9ecfdbd8597131885a33e0d5d495cfc9066bd (diff)
build: Fix automake error
b8f43617a98aeb6c10d554ed11b48a83fc9b5129 regressed the generation of Makefiles. automake 1.10 fails when executed during ./autogen.sh: automake: cairo_test_suite_OBJECTS should not be defined test/Makefile.am:76: while processing program `cairo-test-suite'
-rw-r--r--test/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index f44ce06f6..e4e306396 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -73,7 +73,7 @@ endif
endif
test_sources += $(test)
-noinst_PROGRAMS = cairo-test-suite # always build
+noinst_PROGRAMS = cairo-test-suite$(EXEEXT) # always build
TESTS += cairo-test-suite$(EXEEXT)