SHA256
1
0
forked from pool/grep

- Update to 2.14:

Bug fixes:
  * grep -i '^$' could exit 0 (i.e., report a match) in a multi-byte
    locale, even though there was no match, and the command generated
    no output.  E.g., seq 2 | LC_ALL=en_US.utf8 grep -il '^$' would
    mistakenly print "(standard input)".  Related, seq 9 |
    LC_ALL=en_US.utf8 grep -in '^$' would print "2:4:6:8:10:12:14:16"
    and exit 0.  Now it prints nothing and exits with status of 1. 
    [bug introduced in grep-2.6]
  * 'grep' no longer falsely reports text files as being binary on
    file systems that compress contents or that store tiny contents
    in metadata.
- Add current German message catalog from the translation project.

OBS-URL: https://build.opensuse.org/package/show/Base:System/grep?expand=0&rev=30
This commit is contained in:
Philipp Thomas
2012-08-24 18:47:51 +00:00
committed by Git OBS Bridge
parent 60b72d06e4
commit ef325ae301
5 changed files with 46 additions and 21 deletions

View File

@@ -1,3 +1,23 @@
-------------------------------------------------------------------
Fri Aug 24 20:29:59 CEST 2012 - pth@suse.de
- Update to 2.14:
Bug fixes:
* grep -i '^$' could exit 0 (i.e., report a match) in a multi-byte
locale, even though there was no match, and the command generated
no output. E.g., seq 2 | LC_ALL=en_US.utf8 grep -il '^$' would
mistakenly print "(standard input)". Related, seq 9 |
LC_ALL=en_US.utf8 grep -in '^$' would print "2:4:6:8:10:12:14:16"
and exit 0. Now it prints nothing and exits with status of 1.
[bug introduced in grep-2.6]
* 'grep' no longer falsely reports text files as being binary on
file systems that compress contents or that store tiny contents
in metadata.
- Add current German message catalog from the translation project.
-------------------------------------------------------------------
Thu Jul 5 11:27:21 CEST 2012 - jsmeix@suse.de