]> git.ipfire.org Git - thirdparty/git.git/commit - configure.ac
configure: be more idiomatic
authorStefano Lattarini <stefano.lattarini@gmail.com>
Mon, 26 Mar 2012 16:42:26 +0000 (18:42 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 26 Mar 2012 19:03:40 +0000 (12:03 -0700)
commit5b2d131419817c5f5996da0e284e906400c083ef
treeed67a40c29cbbb7b7b6a29bc401172ed45c96799
parent99cccefbe0927027e69ba7ba96317eba42cec3cb
configure: be more idiomatic

Lots of code in Git's configure.ac doesn't follow the typical formatting,
idioms and best practices for Autoconf input files.  Improve the situation.

There are probably many more similar improvements to be done, but trying
to clump all of them in a single change would make it unreviewable, so we
content ourselves with a partial improvement.

This change is just cosmetic, and should cause no semantic change.

The most relevant of the changes introduced by this patch are:

 - Do not add trailing '\' characters for line continuation where they
   are not truly needed.

 - In several (but not all) macro calls, properly quote the arguments.

 - Few cosmetic changes in spacing and comments.

Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
configure.ac