summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-02-10 19:52:58 -0500
committerGitHub <noreply@github.com>2017-02-10 19:52:58 -0500
commit050db122ba386bf5143b0c3c631788476231c095 (patch)
tree6f9b51e9651182877c45a49202276ce5a4a1341d /Makefile.am
parenta0e5c15d4f5eb47ddb26850c6b99b1e110e0c270 (diff)
parent2a478ebfa164587f61bd5092ffb1dcc1888d03df (diff)
Merge pull request #5250 from ddstreet/test-sys-nodes-script
replace test/sys.tar.xz with script to create test/sys/ contents
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile.am b/Makefile.am
index 957794b2dc..447cf00d07 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -4011,19 +4011,19 @@ check_DATA += \
test/sys
endif
-# packed sysfs test tree
-test/sys: test/sys.tar.xz
- -rm -rf test/sys
+# sysfs test tree
+test/sys: test/sys-script.py
+ -rm -rf $@
$(AM_V_at)$(MKDIR_P) $(dir $@)
- $(AM_V_GEN)tar -C test/ -xJf $(top_srcdir)/test/sys.tar.xz
- -touch test/sys
+ $(AM_V_GEN)$(top_srcdir)/test/sys-script.py $(dir $@)
+ -touch $@
test-sys-distclean:
-rm -rf test/sys
DISTCLEAN_LOCAL_HOOKS += test-sys-distclean
EXTRA_DIST += \
- test/sys.tar.xz \
+ test/sys-script.py \
test/udev-test.pl \
test/hwdb-test.sh \
test/rule-syntax-check.py \