]> git.ipfire.org Git - thirdparty/kmod.git/commitdiff
build: let touch on directory as last step
authorLucas De Marchi <lucas.demarchi@intel.com>
Tue, 3 Feb 2015 07:17:49 +0000 (05:17 -0200)
committerLucas De Marchi <lucas.demarchi@intel.com>
Tue, 3 Feb 2015 07:19:38 +0000 (05:19 -0200)
We need to let these instructions in kmod to be the last executed ones.
Otherwise the subdirectory containing the modules could propagate up the
time access.

Makefile.am

index 7774759c5928814663488a678a6e8b3f6467604b..a99a5a2360a03f1fba1d7bd1bca8702bb5361c7c 100644 (file)
@@ -215,10 +215,10 @@ ROOTFS = testsuite/rootfs
 ROOTFS_PRISTINE = $(top_srcdir)/testsuite/rootfs-pristine
 CREATE_ROOTFS = $(AM_V_GEN) ( $(RM) -rf $(ROOTFS) && mkdir -p $(dir $(ROOTFS)) && \
                                cp -r $(ROOTFS_PRISTINE) $(ROOTFS) && \
-                               touch testsuite/stamp-rootfs && \
                                find $(ROOTFS) -type d -exec chmod +w {} \; && \
                                $(top_srcdir)/testsuite/populate-modules.sh \
-                                       $(MODULE_PLAYGROUND) $(ROOTFS) )
+                                       $(MODULE_PLAYGROUND) $(ROOTFS) ) && \
+                               touch testsuite/stamp-rootfs
 
 build-module-playground:
        $(AM_V_GEN)if test "$(top_srcdir)" != "$(top_builddir)"; then \