diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2011-05-31 09:47:12 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2011-05-31 09:47:12 +0200 |
commit | 399ab8e650e03cffbe8f1e687192d33f3bf942ad (patch) | |
tree | 957345b8e569df92d4a30959f9ca86d37a932142 /Makefile.in | |
parent | 5c49e11c01b0baf4c2c54259e5ec06274251f0fa (diff) |
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>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
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 |