On Wednesday 2008-09-10 20:34, Trent Piepho wrote: >setlocalversion used to use an abbreviated git commit sha1 to generate the >tag. This was changed in commit d882421f4e08ddf0a94245cdbe516db260aa6f41 >"kbuild: change CONFIG_LOCALVERSION_AUTO to use a git-describe-ish format" >to use git describe to come up with a tag. Which is nice, but git describe >sometimes can't describe the revision. Commit >56b2f0706d82535fd8d85503f2dcc0be40c8e55d addressed this, but there is still >no tag generated. > >So, generate a plain abbreviated sha1 tag like setlocalversion used to when >git describe comes up short. > > if tag=`git describe 2>/dev/null`; then > echo $tag | awk -F- '{printf("-%05d-%s", $(NF-1),$(NF))}' >+ else >+ printf '%s%s' -g `echo "$head" | cut -c1-7` > fi > fi Ouch. The minimal length of some Linux kernel SHAs are already 8 characters long. You want to be using `git rev-parse --abbrev $longthing` here. -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html