summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2011-05-31 09:47:12 +0200
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2011-05-31 09:47:12 +0200
commit399ab8e650e03cffbe8f1e687192d33f3bf942ad (patch)
tree957345b8e569df92d4a30959f9ca86d37a932142
parent5c49e11c01b0baf4c2c54259e5ec06274251f0fa (diff)
downloaduClibc-alpine-399ab8e650e03cffbe8f1e687192d33f3bf942ad.tar.bz2
uClibc-alpine-399ab8e650e03cffbe8f1e687192d33f3bf942ad.tar.xz
libubacktrace: Fix ASNEEDED emission
In master the variable is called SHARED_LIBNAME and not SHARED_MAJORNAME. Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 2f8370b0f..8ed5f8f10 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -338,7 +338,7 @@ else
endif
ifeq ($(UCLIBC_HAS_BACKTRACE),y)
# Add the AS_NEEDED entry for libubacktrace.so
- if [ -f $(top_builddir)lib/libc.so -a -f $(PREFIX)$(RUNTIME_PREFIX)$(MULTILIB_DIR)/$(SHARED_MAJORNAME) ] ; then \
+ if [ -f $(top_builddir)lib/libc.so -a -f $(PREFIX)$(RUNTIME_PREFIX)$(MULTILIB_DIR)/$(SHARED_LIBNAME) ] ; then \
echo "GROUP ( $(UBACKTRACE_ASNEEDED) )" >> $(PREFIX)$(DEVEL_PREFIX)$(MULTILIB_DIR)/libc.so; \
fi
endif