diff options
Diffstat (limited to 'Documentation')
-rwxr-xr-x | Documentation/maintainers/bump_new_revision.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/maintainers/bump_new_revision.sh b/Documentation/maintainers/bump_new_revision.sh index 18b9ea0fe1..0c8bb160c8 100755 --- a/Documentation/maintainers/bump_new_revision.sh +++ b/Documentation/maintainers/bump_new_revision.sh @@ -361,7 +361,8 @@ case ${OPERATION} in # we need to copy the file we want to play with ## first generate the correct filename, we expect that if someone added -rX to the package it has reason. pushd "${OVERLAY}/${dir}" &> /dev/null - EBUILD=`find ./ -name \*.ebuild |grep "${VERSION}\\." | sort |tail -n 1` + EBUILD=`find ./ -name \*.ebuild | grep "${VERSION}\(\-r[0-9]\+\)\?\\." | sort |tail -n 1` + echo ${EBUILD} cp -f ${EBUILD} "${WRKDIR}" popd &> /dev/null _addcvsfile "${WRKDIR}" ${EBUILD/*\//} |