summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorUlrich Drepper <[email protected]>2014-12-18 12:32:39 -0500
committerMark Wielaard <[email protected]>2014-12-18 23:47:22 +0100
commit898ed261444cdd817c2d9b3656209a291eb5e807 (patch)
tree32764f1005d8f80ed45c394c02c7867b8caed1fb /src
parent09dc83d67f16f378cd3f9901ab39fcd87aa08aeb (diff)
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')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/Makefile.am2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 273ae5dc..0ae863ed 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2014-12-18 Ulrich Drepper <[email protected]>
+
+ * Makefile.am: Suppress output of textrel_check command.
+
2014-12-17 Mark Wielaard <[email protected]>
* readelf.c (print_cfa_program): Add bounds check before each op that
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.