diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-07-12 20:40:53 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-07-12 20:40:53 +0000 |
commit | d6e6ee0202f8705a30b10b53eb259a2d62ece466 (patch) | |
tree | f3a3f194b2dc1c3af6adb91fac103ef304379d26 /test/Rules.mak | |
parent | dd5db8b9f54ccfc62cf74f6acfba8b73db3c5977 (diff) | |
download | uClibc-alpine-d6e6ee0202f8705a30b10b53eb259a2d62ece466.tar.bz2 uClibc-alpine-d6e6ee0202f8705a30b10b53eb259a2d62ece466.tar.xz |
Use uClibc's ldd, not the system one which is probably broken
anyways. This ensures correct answers, and prevents all the
annoying segfaults from the system ldd.
-Erik
Diffstat (limited to 'test/Rules.mak')
-rw-r--r-- | test/Rules.mak | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/Rules.mak b/test/Rules.mak index 63a8b2b95..aba4f38c0 100644 --- a/test/Rules.mak +++ b/test/Rules.mak @@ -17,6 +17,7 @@ NATIVE_ARCH = $(shell uname -m | sed -e 's/i.86/i386/' -e 's/sparc.*/sparc/' \ CC = ../$(TESTDIR)extra/gcc-uClibc/$(NATIVE_ARCH)-uclibc-gcc HOST_CC = gcc STRIPTOOL=strip +LDD = ../$(TESTDIR)ldso/util/ldd # Check if 'ls -sh' works or not |