]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
test: change Makefile.am to use sys-script.py instead of sys.tar.xz
authorDan Streetman <ddstreet@ieee.org>
Fri, 10 Feb 2017 20:29:46 +0000 (15:29 -0500)
committerDan Streetman <ddstreet@ieee.org>
Fri, 10 Feb 2017 20:29:46 +0000 (15:29 -0500)
Makefile.am

index 2d913bd7d716733b6e76f8474da1a2eec7a7ab73..5d2811b6d6301c4430433f24b133110f4b6c5a57 100644 (file)
@@ -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 \