diff options
author | Andreas Steinel <Andreas.Steinel@exirius.de> | 2018-02-08 11:57:31 +0100 |
---|---|---|
committer | Andreas Steinel <Andreas.Steinel@exirius.de> | 2018-02-08 12:02:57 +0100 |
commit | 06f0b94ae081ee7fe9f61a8bc92fda955dca32de (patch) | |
tree | 9ec06ae8c332941c1c6905cce9e1a233805bd5aa | |
parent | be8c2af95315e53c4ae90ccd50a36e99512acae1 (diff) |
Fixing wrong week days
rpm-build bogus date detection yields:
warning: bogus date in %changelog: Mon Jan 17 2014 Andras Horvath <andras.horvath@gmail.com> 1.4-1
warning: bogus date in %changelog: Tue Jul 07 2006 Andras Horvath <Andras.Horvath@cern.ch> 1.1-1
warning: bogus date in %changelog: Thu Apr 26 2006 Andras Horvath <Andras.Horvath@cern.ch> 1.0-1
-rw-r--r-- | mbw.spec | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -33,7 +33,7 @@ rm -rf %{buildroot} %{_mandir}/man1/mbw.1.gz %changelog -* Mon Jan 17 2014 Andras Horvath <andras.horvath@gmail.com> 1.4-1 +* Fri Jan 17 2014 Andras Horvath <andras.horvath@gmail.com> 1.4-1 - Fix labeling of the displayed results * Thu Oct 03 2013 James Slocum <j.m.slocum@gmail.com> 1.3-1 @@ -43,11 +43,11 @@ rm -rf %{buildroot} * Sun Mar 11 2012 Andras Horvath <andras.horvath@gmail.com> 1.2-1 - Fix MCBLOCK test: actually copy to the full buffer, not just its first $blocksize. -* Tue Jul 07 2006 Andras Horvath <Andras.Horvath@cern.ch> 1.1-1 +* Fri Jul 07 2006 Andras Horvath <Andras.Horvath@cern.ch> 1.1-1 - separate array initialization from work -> faster execution - getopt() options parsing: suppress average, specific tests only, no. runs - added quiet mode - added a new test: memcpy() with given block size -* Thu Apr 26 2006 Andras Horvath <Andras.Horvath@cern.ch> 1.0-1 +* Wed Apr 26 2006 Andras Horvath <Andras.Horvath@cern.ch> 1.0-1 - initial release |