diff options
Diffstat (limited to 'source/a/logrotate/logrotate.SlackBuild')
-rwxr-xr-x | source/a/logrotate/logrotate.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/a/logrotate/logrotate.SlackBuild b/source/a/logrotate/logrotate.SlackBuild index baeba510..24674094 100755 --- a/source/a/logrotate/logrotate.SlackBuild +++ b/source/a/logrotate/logrotate.SlackBuild @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2008, 2009, 2012, 2015, 2017, 2018 Patrick J. Volkerding, Sebeka, Minnesota, USA +# Copyright 2008, 2009, 2012, 2015, 2017, 2018, 2020 Patrick J. Volkerding, Sebeka, Minnesota, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -122,7 +122,7 @@ fi mkdir -p $PKG/usr/doc/logrotate-$VERSION cp -a \ - CHANGES COPYING READM* \ + ChangeLog* COPYING* READM* \ $PKG/usr/doc/logrotate-$VERSION # If there's a ChangeLog, installing at least part of the recent history @@ -130,7 +130,7 @@ cp -a \ if [ -r ChangeLog.md ]; then DOCSDIR=$(echo $PKG/usr/doc/*-$VERSION) cat ChangeLog.md | head -n 1000 > $DOCSDIR/ChangeLog.md - touch -r ChangeLog $DOCSDIR/ChangeLog + touch -r ChangeLog.md $DOCSDIR/ChangeLog.md fi mkdir -p $PKG/install |