diff options
author | Andrea Canciani <ranma42@gmail.com> | 2011-07-19 07:26:59 +0200 |
---|---|---|
committer | Andrea Canciani <ranma42@gmail.com> | 2011-07-19 07:26:59 +0200 |
commit | e5dfac245f8252a30e39f682f73a7e0065e7ffca (patch) | |
tree | 8439f43d7c66aae6207bc03f5b4039d4055847af /test/Makefile.am | |
parent | 9ab9ecfdbd8597131885a33e0d5d495cfc9066bd (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'
Diffstat (limited to 'test/Makefile.am')
-rw-r--r-- | test/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index f44ce06f..e4e30639 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) |