summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2014-05-31 00:19:57 -0400
committerMatthias Clasen <mclasen@redhat.com>2014-05-31 00:19:57 -0400
commit35fbbe32ae49cb80130be4d0cd7d375dfef6d2ad (patch)
treea91a81f53b6688bf2dbd0ea1203e9d2f5be25b69
parentc039b91c429383826ca4becbcb4c87e9d7c983b4 (diff)
downloadpango-35fbbe32ae49cb80130be4d0cd7d375dfef6d2ad.tar.gz
testsuite: put installed tests in the right place
Follow the prevailing practice and put the installed tests into $libdir/installed-tests/$PACKAGE instead of $pkglibdir/installed-tests.
-rw-r--r--tests/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 45914484..652c42f6 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -82,7 +82,7 @@ $(noinst_PROGRAMS) $(check_PROGRAMS): pangorc
noinst_PROGRAMS = $(check_PROGRAMS) gen-all-unicode dump-boundaries
if BUILDOPT_INSTALL_TESTS
-insttestdir=$(pkglibexecdir)/installed-tests
+insttestdir=$(libexecdir)/installed-tests/$(PACKAGE)
insttest_PROGRAMS = $(check_PROGRAMS)
testdatadir = $(insttestdir)
@@ -97,7 +97,7 @@ testmeta_DATA = $(check_PROGRAMS:=.test)
%.test: %$(EXEEXT) Makefile
$(AM_V_GEN) (echo '[Test]' > $@.tmp; \
echo 'Type=session' >> $@.tmp; \
- echo 'Exec=$(pkglibexecdir)/installed-tests/$<' >> $@.tmp; \
+ echo 'Exec=$(libexecdir)/installed-tests/$(PACKAGE)/$<' >> $@.tmp; \
mv $@.tmp $@)
endif