summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Makefile.am4
-rwxr-xr-xtest/rules-test.sh4
2 files changed, 4 insertions, 4 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index 78440d23f4..ab3b68e4a6 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -9,10 +9,10 @@ check_DATA = \
test/sys:
$(AM_V_at)$(MKDIR_P) $(dir $@)
- $(AM_V_GEN)tar -C test/ -xJf $(top_srcdir)/test/sys.tar.xz
+ $(AM_V_GEN)tar -C $(top_builddir)/test/ -xJf $(top_srcdir)/test/sys.tar.xz
test-sys-distclean:
- -rm -rf test/sys
+ -rm -rf $(top_builddir)/test/sys
DISTCLEAN_LOCAL_HOOKS = \
test-sys-distclean
diff --git a/test/rules-test.sh b/test/rules-test.sh
index 1e224ff8b5..d560f9a217 100755
--- a/test/rules-test.sh
+++ b/test/rules-test.sh
@@ -4,7 +4,7 @@
# (C) 2010 Canonical Ltd.
# Author: Martin Pitt <martin.pitt@ubuntu.com>
-[ -n "$srcdir" ] || srcdir=`dirname $0`/..
+[ -n "$builddir" ] || builddir=`dirname $0`/..
# skip if we don't have python
type python >/dev/null 2>&1 || {
@@ -12,4 +12,4 @@ type python >/dev/null 2>&1 || {
exit 0
}
-$srcdir/test/rule-syntax-check.py `find $srcdir/rules -name '*.rules'`
+$builddir/test/rule-syntax-check.py `find $builddir/rules -name '*.rules'`