Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 1 | From 355c014573de7f95202cc7c819f81f0f230e4a1a Mon Sep 17 00:00:00 2001 |
| 2 | From: Ting Liu <b28495@freescale.com> |
| 3 | Date: Mon, 18 Jun 2012 16:37:05 +0800 |
| 4 | Subject: [PATCH] skip checking LIB32 and LIB64 if they point to the same place |
| 5 | |
| 6 | Upstream-Status: Inappropriate [oe-core specific] |
| 7 | Signed-off-by: Ting Liu <b28495@freescale.com> |
| 8 | --- |
| 9 | |
| 10 | diff --git a/Makefile b/Makefile |
| 11 | index 91502e1..bfb3414 100644 |
| 12 | --- a/Makefile |
| 13 | +++ b/Makefile |
| 14 | @@ -167,7 +167,6 @@ REALLIB32 = $(realpath $(PREFIX)/$(LIB32)) |
| 15 | REALLIB64 = $(realpath $(PREFIX)/$(LIB64)) |
| 16 | ifneq ($(realpath $(PREFIX)),) |
| 17 | ifeq ($(REALLIB32),$(REALLIB64)) |
| 18 | -$(error LIB32 ($(PREFIX)/$(LIB32) to $(REALLIB32)) and LIB64 ($(PREFIX)/$(LIB64) to $(REALLIB64)) are resolving to the same place. Manually specify LIB32 and LIB64. e.g. make PREFIX=$(PREFIX) LIB32=lib32 LIB64=lib64) |
| 19 | endif |
| 20 | endif |
| 21 | |
| 22 | -- |
| 23 | 1.9.2 |