diff --git a/helpers/lh_binary_md5sum b/helpers/lh_binary_md5sum index e40be9367..edc636e17 100755 --- a/helpers/lh_binary_md5sum +++ b/helpers/lh_binary_md5sum @@ -70,7 +70,7 @@ cat ../md5sum.txt >> md5sum.txt rm -f ../md5sum.txt # File list -find . | sed -e 's|^.||g' | grep "^/" > ../binary.list +find . | sed -e 's|^.||g' | grep "^/" | sort > ../binary.list cd "${OLDPWD}" diff --git a/helpers/lh_source_md5sum b/helpers/lh_source_md5sum index e8f9b6e98..287d2d178 100755 --- a/helpers/lh_source_md5sum +++ b/helpers/lh_source_md5sum @@ -75,7 +75,7 @@ cat ../md5sum.txt >> md5sum.txt rm -f ../md5sum.txt # File list -find . | sed -e 's|^.||g' | grep "^/" > ../source.list +find . | sed -e 's|^.||g' | grep "^/" | sort > ../source.list cd "${OLDPWD}"