summaryrefslogtreecommitdiffstats
path: root/src/Makefile.am
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@gmail.com>2014-12-18 12:32:39 -0500
committerMark Wielaard <mjw@redhat.com>2014-12-18 23:47:22 +0100
commit898ed261444cdd817c2d9b3656209a291eb5e807 (patch)
tree32764f1005d8f80ed45c394c02c7867b8caed1fb /src/Makefile.am
parent09dc83d67f16f378cd3f9901ab39fcd87aa08aeb (diff)
downloadandroid_external_elfutils-898ed261444cdd817c2d9b3656209a291eb5e807.tar.gz
android_external_elfutils-898ed261444cdd817c2d9b3656209a291eb5e807.tar.bz2
android_external_elfutils-898ed261444cdd817c2d9b3656209a291eb5e807.zip
avoid scary command output
The commands to check for invalid text relocations in the generated DSOs shouldn't be displayed. They contain an echo which prints the text. This patch suppresses the commands from being printed.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r--src/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 28dad858..7a253745 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -127,7 +127,7 @@ libld_elf_i386.so: libld_elf_i386_pic.a libld_elf_i386.map
$(LINK) -shared -o $@ -Wl,--whole-archive,$<,--no-whole-archive \
$(libelf) $(libeu) \
-Wl,--version-script,$(srcdir)/libld_elf_i386.map
- $(textrel_check)
+ @$(textrel_check)
endif
# Special rule to make it possible to define libld_elf_a_SOURCES as we do.