From c25282bf58bee8098415e4d6513878a9904d726e Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Wed, 6 Dec 2006 22:35:21 +0000 Subject: [PATCH] Can't override the two _LDFLAGS var's, have to append to them. --- configure/os/CONFIG.Common.linux-arm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure/os/CONFIG.Common.linux-arm b/configure/os/CONFIG.Common.linux-arm index 04bd61d64..0beec7aaf 100644 --- a/configure/os/CONFIG.Common.linux-arm +++ b/configure/os/CONFIG.Common.linux-arm @@ -21,9 +21,9 @@ ifeq ($(BUILD_CLASS),CROSS) CMPLR_SUFFIX = CMPLR_PREFIX = $(addsuffix -,$(GNU_TARGET)) - # Override - use compile-time only path for shared libraries - SHRLIBDIR_LDFLAGS = $(SHRLIB_DEPLIB_DIRS:%=-Wl,-rpath-link,%) + # Provide a link-time path for shared libraries + SHRLIBDIR_LDFLAGS += $(SHRLIB_DEPLIB_DIRS:%=-Wl,-rpath-link,%) - # Override - use compile-time only path for products - PRODDIR_LDFLAGS = $(PROD_DEPLIB_DIRS:%=-Wl,-rpath-link,%) + # Provide a link-time path for products + PRODDIR_LDFLAGS += $(PROD_DEPLIB_DIRS:%=-Wl,-rpath-link,%) endif