aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libfsimage/Rules.mk
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-01-22 14:29:11 +0000
committerKeir Fraser <keir.fraser@citrix.com>2008-01-22 14:29:11 +0000
commitc8107e1564b783e344be4af53dd156a452c53eee (patch)
treeb24eb9f8614374b5b166233fc89dbd1307d70bde /tools/libfsimage/Rules.mk
parent590e56fc113b8cbe3d4f0efe23b0690be1cb7bf1 (diff)
downloadxen-c8107e1564b783e344be4af53dd156a452c53eee.tar.gz
xen-c8107e1564b783e344be4af53dd156a452c53eee.tar.bz2
xen-c8107e1564b783e344be4af53dd156a452c53eee.zip
Apply PREFIX directly to LIBDIR.
Signed-off-by: Bastian Blank <waldi@debian.org>
Diffstat (limited to 'tools/libfsimage/Rules.mk')
-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 ca6380a4a1..71d59efae9 100644
--- a/tools/libfsimage/Rules.mk
+++ b/tools/libfsimage/Rules.mk
@@ -20,8 +20,8 @@ fs-all: $(FSLIB)
.PHONY: fs-install
fs-install: fs-all
- $(INSTALL_DIR) $(DESTDIR)/usr/$(FSDIR)
- $(INSTALL_PROG) $(FSLIB) $(DESTDIR)/usr/$(FSDIR)
+ $(INSTALL_DIR) $(DESTDIR)$(FSDIR)
+ $(INSTALL_PROG) $(FSLIB) $(DESTDIR)$(FSDIR)
$(FSLIB): $(PIC_OBJS)
$(CC) $(CFLAGS) $(LDFLAGS) $(SHLIB_CFLAGS) -o $@ $^ -lfsimage $(FS_LIBDEPS)