aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libfsimage
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-01-24 14:35:52 +0000
committerKeir Fraser <keir.fraser@citrix.com>2008-01-24 14:35:52 +0000
commit26bf63427f77d844326bf2d3ba21466df12363cf (patch)
tree75cd4c5172d5444ca9ae12309c408cf5296884c5 /tools/libfsimage
parent3dae1f944ba74d5fe7b21d3c8a00e86553b4ec5c (diff)
downloadxen-26bf63427f77d844326bf2d3ba21466df12363cf.tar.gz
xen-26bf63427f77d844326bf2d3ba21466df12363cf.tar.bz2
xen-26bf63427f77d844326bf2d3ba21466df12363cf.zip
Fix libfsimage build on Solaris
The Solaris installation dirs were missing $(PREFIX) Signed-off-by: John Levon <john.levon@sun.com>
Diffstat (limited to 'tools/libfsimage')
-rw-r--r--tools/libfsimage/Rules.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/libfsimage/Rules.mk b/tools/libfsimage/Rules.mk
index 71d59efae9..0cc3d2199f 100644
--- a/tools/libfsimage/Rules.mk
+++ b/tools/libfsimage/Rules.mk
@@ -8,8 +8,8 @@ LDFLAGS += -L../common/
PIC_OBJS := $(patsubst %.c,%.opic,$(LIB_SRCS-y))
FSDIR-$(CONFIG_Linux) = $(LIBDIR)/fs/$(FS)
-FSDIR-$(CONFIG_SunOS)-x86_64 = lib/fs/$(FS)/64
-FSDIR-$(CONFIG_SunOS)-x86_32 = lib/fs/$(FS)/
+FSDIR-$(CONFIG_SunOS)-x86_64 = $(PREFIX)/lib/fs/$(FS)/64
+FSDIR-$(CONFIG_SunOS)-x86_32 = $(PREFIX)/lib/fs/$(FS)/
FSDIR-$(CONFIG_SunOS) = $(FSDIR-$(CONFIG_SunOS)-$(XEN_TARGET_ARCH))
FSDIR = $(FSDIR-y)