On Mon, Apr 28, 2008 at 04:15:24PM -0500, Timur Tabi wrote: > When I issue this command: > > git-send-email --from Timur Tabi <timur@xxxxxxxxxxxxx> --suppress-cc=all --to > timur@xxxxxxxx --smtp-server remotesmtp.freescale.net > 0001--PATCH-Update-CS4270-driver-to-ASoC-V2.patch Surely that is not the command you issued, since it lacks shell quoting around your name and email address. > I don't know enough about Perl to debug this, but I presume the problem is in > this code: > [...] > for my $f (@ARGV) { > [...] > print STDERR "Skipping $f - not found.\n"; Yes, that is what is producing the error message. But that is the first time we ever look at @ARGV, let alone modify it. So the error is almost certainly caused by a blank argument being passed on the command line. And we can't debug that unless you show us the exact shell invocation that was used. -Peff -- 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