]> xenbits.xensource.com Git - people/royger/xen.git/commitdiff
firmware/shim: better filtering of intermediate files during Xen tree setup
authorJan Beulich <jbeulich@suse.com>
Thu, 1 Mar 2018 14:10:15 +0000 (15:10 +0100)
committerJan Beulich <jbeulich@suse.com>
Thu, 1 Mar 2018 14:10:15 +0000 (15:10 +0100)
I have no idea what *.1 is meant to cover. Instead also exclude
preprocessed and non-source assembly files.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Wei Liu <wei.liu2@citrix.com>
Reviewed-by: Roger Pau Monné <roger.pau@citrix.com>
tools/firmware/xen-dir/Makefile

index ebfef7e541301218191ade85d777b8e7680a12cb..a7e69ae77707296b21817ac076556f053c76353f 100644 (file)
@@ -26,7 +26,7 @@ linkfarm.stamp: $(DEP_DIRS) $(DEP_FILES) FORCE
        $(foreach d, $(LINK_DIRS), \
                (cd $(XEN_ROOT); \
                 find $(d) ! -type l -type f \
-                $(addprefix ! -name , '*.[oa1]' '.*.d' '.*.d2')) \
+                $(addprefix ! -name , '*.[isoa]' '.*.d' '.*.d2')) \
                 >> linkfarm.stamp.tmp ; ) \
        $(foreach f, $(LINK_FILES), \
                echo $(f) >> linkfarm.stamp.tmp ;)