summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Rules.mak8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/Rules.mak b/test/Rules.mak
index ee080aab3..6a7612b44 100644
--- a/test/Rules.mak
+++ b/test/Rules.mak
@@ -14,7 +14,13 @@ TESTDIR=$(top_builddir)test/
include $(top_builddir)/Rules.mak
-UCLIBC_LDSO ?= $(firstword $(wildcard $(top_builddir)lib/ld*))
+ifdef UCLIBC_LDSO
+ifeq (,$(findstring /,$(UCLIBC_LDSO)))
+UCLIBC_LDSO := $(top_builddir)lib/$(UCLIBC_LDSO)
+endif
+else
+UCLIBC_LDSO := $(firstword $(wildcard $(top_builddir)lib/ld*))
+endif
#--------------------------------------------------------
# Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.