aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2010-09-13 17:45:59 +0100
committerKeir Fraser <keir.fraser@citrix.com>2010-09-13 17:45:59 +0100
commit2e701b1f87ba03526e0b378649de648c609667b9 (patch)
treec0d70d7635983b93879ff3692bb47256d4f173d0 /config
parent5e886b348496fb4b7e4b3e050583459558ff13ba (diff)
downloadxen-2e701b1f87ba03526e0b378649de648c609667b9.tar.gz
xen-2e701b1f87ba03526e0b378649de648c609667b9.tar.bz2
xen-2e701b1f87ba03526e0b378649de648c609667b9.zip
Allow easier overriding of LIBLEAFDIR_x86_64 on GNU systems
Some GNU systems (including Debian) do not use /usr/lib64. This change makes it easier to have the Xen build system on amd64 put its 64-bit libraries files in /usr/lib. Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
Diffstat (limited to 'config')
-rw-r--r--config/StdGNU.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/StdGNU.mk b/config/StdGNU.mk
index 532ee6c87b..58ae2d90b1 100644
--- a/config/StdGNU.mk
+++ b/config/StdGNU.mk
@@ -28,7 +28,7 @@ BINDIR = $(PREFIX)/bin
INCLUDEDIR = $(PREFIX)/include
LIBLEAFDIR = lib
LIBLEAFDIR_x86_32 = lib
-LIBLEAFDIR_x86_64 = lib64
+LIBLEAFDIR_x86_64 ?= lib64
LIBDIR = $(PREFIX)/$(LIBLEAFDIR)
LIBDIR_x86_32 = $(PREFIX)/$(LIBLEAFDIR_x86_32)
LIBDIR_x86_64 = $(PREFIX)/$(LIBLEAFDIR_x86_64)