diff options
-rwxr-xr-x | scripts/makepkg | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/makepkg b/scripts/makepkg index 4dc44f1f..1c5705f4 100755 --- a/scripts/makepkg +++ b/scripts/makepkg @@ -897,9 +897,9 @@ fi # do we have a changelog? have_changelog=0 -if [ -f "$startdir/Changelog" ]; then - msg "Copying package Changelog" - cp "$startdir/Changelog" "$startdir/pkg/.CHANGELOG" +if [ -f "$startdir/ChangeLog" ]; then + msg "Copying package ChangeLog" + cp "$startdir/ChangeLog" "$startdir/pkg/.CHANGELOG" have_changelog=1 fi |