mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-13 21:44:52 +00:00
Use absolute builddir paths in automake test files
When switching to a more recent automake version on EL7, I realized that @top_builddir@ wasn't being resolved to an absolute path anymore, leading to errors when tests/runtestdefaultsupprs.py wasn't being run in the "right" directory. This is annoying. So this patches uses the absolute build path, explicitely. * tests/runtestdefaultsupprs.py.in: Use abs_top_builddir rather than top_builddir. Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
parent
cc45a9e7f0
commit
6824e5c968
@ -20,12 +20,12 @@ import os
|
||||
import subprocess
|
||||
|
||||
|
||||
abidiff = '@top_builddir@/tools/abidiff'
|
||||
abipkgdiff = '@top_builddir@/tools/abipkgdiff'
|
||||
abidiff = '@abs_top_builddir@/tools/abidiff'
|
||||
abipkgdiff = '@abs_top_builddir@/tools/abipkgdiff'
|
||||
test_src_dir = '@top_srcdir@/tests'
|
||||
test_build_dir = '@top_builddir@/tests'
|
||||
test_build_dir = '@abs_top_builddir@/tests'
|
||||
input_dir = '@top_srcdir@/tests/data/test-default-supprs'
|
||||
output_dir = '@top_builddir@/tests/output/test-default-supprs'
|
||||
output_dir = '@abs_top_builddir@/tests/output/test-default-supprs'
|
||||
|
||||
# This variable named is a list of 5-uples. Here is the meaning of
|
||||
# the elements of each 5-uples:
|
||||
|
Loading…
Reference in New Issue
Block a user