summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaiki Ueno <ueno@unixuser.org>2012-04-18 10:37:07 +0900
committerDaiki Ueno <ueno@unixuser.org>2012-04-18 10:37:07 +0900
commitb8fe4d782db37385246f651493f9d935dd58c301 (patch)
treebfbb7806b5b8bb258ceb1a10d99c06eb996c6dcf
parentf2e266da9e60bc5318ea98ad40c8f83a8bb06026 (diff)
downloadibus-b8fe4d782db37385246f651493f9d935dd58c301.tar.gz
Fix make check.
The make variable TESTS is reserved by automake: https://www.gnu.org/software/automake/manual/automake.html#index-TESTS-832 and thus it causes error when make check: make[4]: Entering directory `/home/ueno/devel/ibus/src' /bin/sh: line 9: ./tests: Is a directory FAIL: tests BUG=none TEST=manually Review URL: https://codereview.appspot.com/6056043
-rw-r--r--src/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index b1d17667..df4ada34 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -23,10 +23,10 @@
NULL =
if ENABLE_TESTS
-TESTS = tests
+TESTS_DIR = tests
endif
-SUBDIRS = . $(TESTS)
+SUBDIRS = . $(TESTS_DIR)
# libibus = libibus-@IBUS_API_VERSION@.la
libibus = libibus-1.0.la