Alexey Dobriyan <adobriyan@xxxxx> writes: > Make quiltimport also understand comments following patch name. > > Signed-off-by: Alexey Dobriyan <adobriyan@xxxxx> > --- > > git-quiltimport.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > --- a/git-quiltimport.sh > +++ b/git-quiltimport.sh > @@ -63,7 +63,7 @@ tmp_info="$tmp_dir/info" > commit=$(git rev-parse HEAD) > > mkdir $tmp_dir || exit 2 > -for patch_name in $(grep -v '^#' < "$QUILT_PATCHES/series" ); do > +for patch_name in $(sed -e 's/#.*//' < "$QUILT_PATCHES/series" ); do > if ! [ -f "$QUILT_PATCHES/$patch_name" ] ; then > echo "$patch_name doesn't exist. Skipping." > continue Is this consistent with the way quilt groks the series file? IOW, does quilt forbid patchfile whose name contains a hash, and anything after a hash on the line is taken as comment? Can a line in a quilt series file name more than one patchfile? If so, are they whitespace separated? - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html