diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2021-08-17 22:54:44 +0200 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2021-08-17 22:57:53 +0200 |
commit | 2db00e57a0f1f2715404f4b7b85f5ca8d8f1fbfe (patch) | |
tree | d0b79c5dd13e263526e5dc78870be61ac3b5bf49 | |
parent | Allow for Gentoo-specific patch versions (diff) | |
download | binutils-patches-2db00e57a0f1f2715404f4b7b85f5ca8d8f1fbfe.tar.gz binutils-patches-2db00e57a0f1f2715404f4b7b85f5ca8d8f1fbfe.tar.bz2 binutils-patches-2db00e57a0f1f2715404f4b7b85f5ca8d8f1fbfe.zip |
Allow for empty patchsets
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
-rwxr-xr-x | make-tarball.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make-tarball.sh b/make-tarball.sh index 463cb4a..cb50a93 100755 --- a/make-tarball.sh +++ b/make-tarball.sh @@ -130,7 +130,7 @@ rm -f 0???-no-patch-*.patch rm -f 0???-Automatic-date-update-in-version.in.patch for myname in 0*.patch ; do - mv ${myname} tmp/patch/ || exit 1 + mv ${myname} tmp/patch/ done # add the extra patch |