debuggers.hg
changeset 22196:b65d1a620378
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>
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>
author | Keir Fraser <keir.fraser@citrix.com> |
---|---|
date | Mon Sep 13 17:45:59 2010 +0100 (2010-09-13) |
parents | 9c1e3863c588 |
children | 38b41484c599 |
files | config/StdGNU.mk |
line diff
1.1 --- a/config/StdGNU.mk Mon Sep 13 17:44:19 2010 +0100 1.2 +++ b/config/StdGNU.mk Mon Sep 13 17:45:59 2010 +0100 1.3 @@ -28,7 +28,7 @@ BINDIR = $(PREFIX)/bin 1.4 INCLUDEDIR = $(PREFIX)/include 1.5 LIBLEAFDIR = lib 1.6 LIBLEAFDIR_x86_32 = lib 1.7 -LIBLEAFDIR_x86_64 = lib64 1.8 +LIBLEAFDIR_x86_64 ?= lib64 1.9 LIBDIR = $(PREFIX)/$(LIBLEAFDIR) 1.10 LIBDIR_x86_32 = $(PREFIX)/$(LIBLEAFDIR_x86_32) 1.11 LIBDIR_x86_64 = $(PREFIX)/$(LIBLEAFDIR_x86_64)