aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libfsimage/ufs
diff options
context:
space:
mode:
authorOlaf Hering <olaf@aepfle.de>2012-03-14 17:53:56 +0100
committerOlaf Hering <olaf@aepfle.de>2012-03-14 17:53:56 +0100
commita434834c1e0fc8ef124580c6ae6571c5ebc7de34 (patch)
tree513d7dffca929b95eb8977345ec146ec204bc93b /tools/libfsimage/ufs
parent645c523d0a7654e38641266249c0c0c9d1a3fe0a (diff)
downloadxen-a434834c1e0fc8ef124580c6ae6571c5ebc7de34.tar.gz
xen-a434834c1e0fc8ef124580c6ae6571c5ebc7de34.tar.bz2
xen-a434834c1e0fc8ef124580c6ae6571c5ebc7de34.zip
tools/libfsimage: include Rules.mk first
Move the inclusion of Rules.mk up so that things like CFLAGS get initialized properly. Currently only zfs appends CFLAGS. If CFLAGS get reset by Rules.mk the private settings are lost and compilation of zfs support fails. Signed-off-by: Olaf Hering <olaf@aepfle.de> Committed-by: Ian Jackson <ian.jackson.citrix.com>
Diffstat (limited to 'tools/libfsimage/ufs')
-rw-r--r--tools/libfsimage/ufs/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/libfsimage/ufs/Makefile b/tools/libfsimage/ufs/Makefile
index c1371080f5..116edd6b16 100644
--- a/tools/libfsimage/ufs/Makefile
+++ b/tools/libfsimage/ufs/Makefile
@@ -1,4 +1,5 @@
XEN_ROOT = $(CURDIR)/../../..
+include $(XEN_ROOT)/tools/libfsimage/Rules.mk
LIB_SRCS-y = fsys_ufs.c
@@ -9,5 +10,3 @@ all: fs-all
.PHONY: install
install: fs-install
-
-include $(XEN_ROOT)/tools/libfsimage/Rules.mk