diff options
| author | Ulrich Drepper <[email protected]> | 2014-12-18 12:32:39 -0500 |
|---|---|---|
| committer | Mark Wielaard <[email protected]> | 2014-12-18 23:47:22 +0100 |
| commit | 898ed261444cdd817c2d9b3656209a291eb5e807 (patch) | |
| tree | 32764f1005d8f80ed45c394c02c7867b8caed1fb /backends | |
| parent | 09dc83d67f16f378cd3f9901ab39fcd87aa08aeb (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 'backends')
| -rw-r--r-- | backends/ChangeLog | 4 | ||||
| -rw-r--r-- | backends/Makefile.am | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/backends/ChangeLog b/backends/ChangeLog index db1b1298..e800d16b 100644 --- a/backends/ChangeLog +++ b/backends/ChangeLog @@ -1,3 +1,7 @@ +2014-12-18 Ulrich Drepper <[email protected]> + + * Makefile.am: Suppress output of textrel_check command. + 2014-11-22 Mark Wielaard <[email protected]> * ppc64_symbol.c (ppc64_bss_plt_p): Remove ehdr argument. diff --git a/backends/Makefile.am b/backends/Makefile.am index e06841c0..687c089d 100644 --- a/backends/Makefile.am +++ b/backends/Makefile.am @@ -120,7 +120,7 @@ libebl_%.so libebl_%.map: libebl_%_pic.a $(libelf) $(libdw) -Wl,--whole-archive $< $(cpu_$*) -Wl,--no-whole-archive \ -Wl,--version-script,$(@:.so=.map) \ -Wl,-z,defs -Wl,--as-needed $(libelf) $(libdw) - $(textrel_check) + @$(textrel_check) libebl_i386.so: $(cpu_i386) libebl_x86_64.so: $(cpu_x86_64) |
