From: Ian Campbell Date: Mon, 13 Feb 2012 17:32:21 +0000 (+0000) Subject: tools: only compile libfsimage/xfs on X86 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=321e74e4bc96b34c687b17d5dcb2734f2651eabb;p=xen.git tools: only compile libfsimage/xfs on X86 xfs is not portable, only compile it on X86 Acked-by: Ian Jackson Committed-by: Ian Jackson --- diff --git a/tools/libfsimage/Makefile b/tools/libfsimage/Makefile index 2deb830f5f..bcb8b40fa5 100644 --- a/tools/libfsimage/Makefile +++ b/tools/libfsimage/Makefile @@ -1,7 +1,8 @@ XEN_ROOT = $(CURDIR)/../.. include $(XEN_ROOT)/tools/Rules.mk -SUBDIRS-y = common ufs reiserfs iso9660 fat zfs xfs +SUBDIRS-y = common ufs reiserfs iso9660 fat zfs +SUBDIRS-$(CONFIG_X86) += xfs SUBDIRS-y += $(shell env CC="$(CC)" ./check-libext2fs) .PHONY: all clean install