From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from vmicros1.altlinux.org (vmicros1.altlinux.org [194.107.17.57]) by sourceware.org (Postfix) with ESMTP id 9A14B3938C29 for ; Sat, 12 Dec 2020 16:52:50 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 9A14B3938C29 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=altlinux.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=ldv@altlinux.org Received: from mua.local.altlinux.org (mua.local.altlinux.org [192.168.1.14]) by vmicros1.altlinux.org (Postfix) with ESMTP id 1549772C8B5 for ; Sat, 12 Dec 2020 19:52:50 +0300 (MSK) Received: by mua.local.altlinux.org (Postfix, from userid 508) id 01F607CC8A3; Sat, 12 Dec 2020 19:52:49 +0300 (MSK) Date: Sat, 12 Dec 2020 19:52:49 +0300 From: "Dmitry V. Levin" To: elfutils-devel@sourceware.org Subject: [PATCH 12/12] Fix spelling typos in NEWS, NOTES, TODO, and in comments of configure.ac Message-ID: <20201212165249.GL503@altlinux.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20201212164901.GA474@altlinux.org> X-Spam-Status: No, score=-12.4 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: elfutils-devel@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Elfutils-devel mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Dec 2020 16:52:53 -0000 accidently -> accidentally approriate -> appropriate depencies -> dependencies endianess -> endianness funtions -> functions indeces -> indices indentified -> identified ist -> is mutliple -> multiple nessesary -> necessary optimze -> optimize severly -> severely suport -> support tranformation -> transformation Signed-off-by: Dmitry V. Levin --- ChangeLog | 7 +++++++ NEWS | 18 +++++++++--------- NOTES | 4 ++-- TODO | 2 +- configure.ac | 6 +++--- libebl/ChangeLog | 2 +- 6 files changed, 23 insertions(+), 16 deletions(-) diff --git a/ChangeLog b/ChangeLog index 92efa22f..2b2f7437 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2020-12-12 Dmitry V. Levin + + * configure.ac: Fix spelling typos in comments. + * NEWS: Fix spelling typos. + * NOTES: Likewise. + * TODO: Likewise. + 2020-12-11 Dmitry V. Levin * configure.ac (AM_CONDITIONAL): Remove HAVE_LIBASM and STANDALONE. diff --git a/NEWS b/NEWS index 4e94f1c1..caf20dd4 100644 --- a/NEWS +++ b/NEWS @@ -128,7 +128,7 @@ Fixes CVE-2019-7146, CVE-2019-7148, CVE-2019-7149, CVE-2019-7150, Version 0.175 -readelf: Handle mutliple .debug_macro sections. +readelf: Handle multiple .debug_macro sections. Recognize and parse GNU Property notes, NT_VERSION notes and GNU Build Attribute ELF Notes. @@ -629,7 +629,7 @@ Version 0.140: libelf: Fix regression in creation of section header -libdwfl: Less strict behavior if DWARF reader ist just used to display data +libdwfl: Less strict behavior if DWARF reader is just used to display data Version 0.139: @@ -939,7 +939,7 @@ strip: support Linux kernel modules Version 0.106: libdw: Updated dwarf.h from DWARF3 spec -libdw: add new funtions dwarf_func_entrypc, dwarf_func_file, dwarf_func_line, +libdw: add new functions dwarf_func_entrypc, dwarf_func_file, dwarf_func_line, dwarf_func_col, dwarf_getsrc_file Version 0.105: @@ -1049,7 +1049,7 @@ libelf: change to GPL from OSL1 for now. Version 0.90: libebl: Recognize a few more section types and dynamic tags and return -approriate strings. +appropriate strings. Version 0.89: @@ -1151,11 +1151,11 @@ Version 0.73: Version 0.72: -libelf: and yet more fun with endian tranformation at output time. +libelf: and yet more fun with endian transformation at output time. Version 0.71: -libelf: more fun with endian tranformation at output time. Add test for it. +libelf: more fun with endian transformation at output time. Add test for it. Version 0.70: @@ -1166,7 +1166,7 @@ libelf: add unlikely in some more places. Version 0.69: -libelf: fix output routines to handle case where section indeces and +libelf: fix output routines to handle case where section indices and ordre in the output file don't match correctly. Patch by Jakub. elflint: fix test of note section content for 64-bit platforms and files @@ -1341,7 +1341,7 @@ General: fix a few problem gcc 3.1 had with the code. libelf: implement {gelf,elf32,elf64}_checksum -libelf: optimze DSO: fewer relocations, fewer PLTs +libelf: optimize DSO: fewer relocations, fewer PLTs add msg_tst test @@ -1586,7 +1586,7 @@ Version 0.16: more work on assigning input sections to output sections. -Add gelf_xlatetof and gelf_xlatetom which were accidently left out. +Add gelf_xlatetof and gelf_xlatetom which were accidentally left out. Fix memory handling of section headers. diff --git a/NOTES b/NOTES index 2a5c23bf..deae6435 100644 --- a/NOTES +++ b/NOTES @@ -55,7 +55,7 @@ Some notes: - the old linker supported extern "C++", extern "java" in version scripts. - I believe this implementation is severly broken and needs a redesign + I believe this implementation is severely broken and needs a redesign (how do wildcards work with these languages*?). Therefore it is left out for now. @@ -91,5 +91,5 @@ Some notes: Sections created in output files follow the naming of special section from the gABI. - In no place is a section solely indentified by its name. Internal + In no place is a section solely identified by its name. Internal references always use the section index. diff --git a/TODO b/TODO index ad10a5ee..5ed5e215 100644 --- a/TODO +++ b/TODO @@ -135,7 +135,7 @@ Time-stamp: <2009-02-05 22:08:01 drepper> check whether any relocation is for a merge-able section - check TLS relocation depencies + check TLS relocation dependencies Check content of .eh_frame_hdr, .eh_frame, .gcc_except_table diff --git a/configure.ac b/configure.ac index ed11d249..9e29f169 100644 --- a/configure.ac +++ b/configure.ac @@ -240,7 +240,7 @@ LDFLAGS="$save_LDFLAGS"]) AS_IF([test "x$ac_cv_tls" != xyes], AC_MSG_ERROR([__thread support required])) -dnl Before 4.9 gcc doesn't ship stdatomic.h, but the nessesary atomics are +dnl Before 4.9 gcc doesn't ship stdatomic.h, but the necessary atomics are dnl available by (at least) 4.7. So if the system doesn't have a stdatomic.h we dnl fall back on one copied from FreeBSD that handles the difference. AC_CACHE_CHECK([whether gcc provides stdatomic.h], ac_cv_has_stdatomic, @@ -298,7 +298,7 @@ case $use_debugpred in esac AC_SUBST([DEBUGPRED], $use_debugpred_val) -dnl Enable gprof suport. +dnl Enable gprof support. AC_ARG_ENABLE([gprof], AS_HELP_STRING([--enable-gprof],[build binaries with gprof support]), [use_gprof=$enableval], [use_gprof=no]) if test "$use_gprof" = yes; then @@ -307,7 +307,7 @@ if test "$use_gprof" = yes; then fi AM_CONDITIONAL(GPROF, test "$use_gprof" = yes) -# Enable gcov suport. +# Enable gcov support. AC_ARG_ENABLE([gcov], AS_HELP_STRING([--enable-gcov],[build binaries with gcov support]), [use_gcov=$enableval], [use_gcov=no]) if test "$use_gcov" = yes; then diff --git a/libebl/ChangeLog b/libebl/ChangeLog index 863e4d55..04e9cd49 100644 --- a/libebl/ChangeLog +++ b/libebl/ChangeLog @@ -1096,7 +1096,7 @@ 2005-05-11 Ulrich Drepper * eblcorenote.c: Handle new AT_* values and files with different - endianess. + endianness. * Makefile.am (x86_64_SRCS): Add x86_64_corenote.c. * x86-64_corenote.c: New file. * x86_64_init.c: Hook in x86_64_corenote. -- ldv