diff options
author | Marco Varlese <marco.varlese@suse.com> | 2017-09-03 19:04:46 +0200 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2017-09-07 13:41:12 +0000 |
commit | 7ba443706b3ebfc2e3d52570cd56c7d5ae352459 (patch) | |
tree | 782df806c54665026810002f9145d48b662fa25c /build-root/Makefile | |
parent | bd8a611c7e4558f18e3280ace9e48ecae5673800 (diff) |
The missing variable (added with this patch) was causing the build on AARCH64
platforms to default to lib (instead of lib64) when not explicitely defining
the --libdir through the configure script.
This patch fixes that.
Change-Id: Ia4c152e0f40acab7f098885d672ff9385f57b0fe
Signed-off-by: Marco Varlese <marco.varlese@suse.com>
Diffstat (limited to 'build-root/Makefile')
-rw-r--r-- | build-root/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build-root/Makefile b/build-root/Makefile index 0fed520c728..81f7b9011b8 100644 --- a/build-root/Makefile +++ b/build-root/Makefile @@ -165,6 +165,7 @@ BASIC_ARCH = \ # x86_64 can be either 32/64. set BIACH=32 to get 32 bit libraries. BIARCH = 64 +aarch64_libdir = 64 x86_64_libdir = $(BIARCH) native_libdir = $($(NATIVE_ARCH)_libdir) |