quilt-patch.sh: Support new "sources" file format

This commit is contained in:
Florian Weimer 2017-01-02 13:32:40 +01:00
parent c659285752
commit 41c1b49335
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
export QUILT_PATCHES=$PWD
# Extract source file name from sources file,
# and assume it's the same name as the directory.
source=`cat sources | sed -e 's,^.* ,,g'`
source=`awk -F '[() ]+' '/^[A-Z0-9]+ /{print $2}; /^[0-9a-f]+ /{print $2}' sources`
srcdir=${source%.tar.gz}
if [ "$1" == "-f" ] && [ -d "$srcdir" ]; then
echo Cleaning up $srcdir