diff options
| author | Ulrich Drepper <drepper@gmail.com> | 2014-12-18 12:32:39 -0500 |
|---|---|---|
| committer | Mark Wielaard <mjw@redhat.com> | 2014-12-18 23:47:22 +0100 |
| commit | 898ed261444cdd817c2d9b3656209a291eb5e807 (patch) | |
| tree | 32764f1005d8f80ed45c394c02c7867b8caed1fb /libasm | |
| parent | 09dc83d67f16f378cd3f9901ab39fcd87aa08aeb (diff) | |
| download | platform_external_elfutils-898ed261444cdd817c2d9b3656209a291eb5e807.tar.gz platform_external_elfutils-898ed261444cdd817c2d9b3656209a291eb5e807.tar.bz2 platform_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 'libasm')
| -rw-r--r-- | libasm/ChangeLog | 6 | ||||
| -rw-r--r-- | libasm/Makefile.am | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libasm/ChangeLog b/libasm/ChangeLog index 034a64da..9b25af99 100644 --- a/libasm/ChangeLog +++ b/libasm/ChangeLog @@ -1,4 +1,8 @@ -2014-01127 Mark Wielaard <mjw@redhat.com> +2014-12-18 Ulrich Drepper <drepper@gmail.com> + + * Makefile.am: Suppress output of textrel_check command. + +2014-11-27 Mark Wielaard <mjw@redhat.com> * Makefile.am (libasm.so): Use textrel_check. diff --git a/libasm/Makefile.am b/libasm/Makefile.am index 88c2530b..6ea2a8e8 100644 --- a/libasm/Makefile.am +++ b/libasm/Makefile.am @@ -66,7 +66,7 @@ libasm.so$(EXEEXT): libasm_pic.a libasm.map -Wl,--version-script,$(srcdir)/libasm.map,--no-undefined \ -Wl,--soname,$@.$(VERSION) \ ../libebl/libebl.a ../libelf/libelf.so $(libasm_so_LDLIBS) - $(textrel_check) + @$(textrel_check) ln -fs $@ $@.$(VERSION) install: install-am libasm.so |
