<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git/Makefile, branch v2.2.0</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/git/git.git/
</subtitle>
<id>https://git.shady.money/git/atom?h=v2.2.0</id>
<link rel='self' href='https://git.shady.money/git/atom?h=v2.2.0'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/'/>
<updated>2014-10-29T17:08:07Z</updated>
<entry>
<title>Merge branch 'dm/port2zos'</title>
<updated>2014-10-29T17:08:07Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2014-10-29T17:08:06Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=ce71c1f3398a956b0152f8ebf11b7a9d50a3095e'/>
<id>urn:sha1:ce71c1f3398a956b0152f8ebf11b7a9d50a3095e</id>
<content type='text'>
z/OS port

* dm/port2zos:
  compat/bswap.h: detect endianness from XL C compiler macros
  Makefile: reorder linker flags in the git executable rule
  git-compat-util.h: support variadic macros with the XL C compiler
</content>
</entry>
<entry>
<title>Makefile: reorder linker flags in the git executable rule</title>
<updated>2014-10-27T18:49:18Z</updated>
<author>
<name>David Michael</name>
<email>fedora.dm0@gmail.com</email>
</author>
<published>2014-10-26T17:33:53Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=48a031af3cc555e0eb9d30b96f2e0943de7c44ae'/>
<id>urn:sha1:48a031af3cc555e0eb9d30b96f2e0943de7c44ae</id>
<content type='text'>
The XL C compiler can fail due to mixing library path and object
file arguments, for example when linking git while building with
"gmake LDFLAGS=-L$prefix/lib".

Move the ALL_LDFLAGS variable expansion in the git executable rule
to be consistent with all the other linking rules, namely to have
LDFLAGS such as -L$where before the object files *.o being linked
together.

Signed-off-by: David Michael &lt;fedora.dm0@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'cc/interpret-trailers'</title>
<updated>2014-10-20T19:25:32Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2014-10-20T19:25:30Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=9d04401ffe18138138e8f765c2bb31420f3efe25'/>
<id>urn:sha1:9d04401ffe18138138e8f765c2bb31420f3efe25</id>
<content type='text'>
A new filter to programatically edit the tail end of the commit log
messages.

* cc/interpret-trailers:
  Documentation: add documentation for 'git interpret-trailers'
  trailer: add tests for commands in config file
  trailer: execute command from 'trailer.&lt;name&gt;.command'
  trailer: add tests for "git interpret-trailers"
  trailer: add interpret-trailers command
  trailer: put all the processing together and print
  trailer: parse trailers from file or stdin
  trailer: process command line trailer arguments
  trailer: read and process config information
  trailer: process trailers from input message and arguments
  trailer: add data structures and basic functions
</content>
</entry>
<entry>
<title>Merge branch 'rs/sha1-array-test'</title>
<updated>2014-10-14T17:49:56Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2014-10-14T17:49:56Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=40e2d8dbaf7acecc9c96ca2c99478bc7bfb3bc3c'/>
<id>urn:sha1:40e2d8dbaf7acecc9c96ca2c99478bc7bfb3bc3c</id>
<content type='text'>
* rs/sha1-array-test:
  sha1-lookup: handle duplicates in sha1_pos()
  sha1-array: add test-sha1-array and basic tests
</content>
</entry>
<entry>
<title>trailer: add interpret-trailers command</title>
<updated>2014-10-13T20:55:27Z</updated>
<author>
<name>Christian Couder</name>
<email>chriscool@tuxfamily.org</email>
</author>
<published>2014-10-13T18:16:29Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=6634f05454662b62e1f34766d3684b99fb53ad66'/>
<id>urn:sha1:6634f05454662b62e1f34766d3684b99fb53ad66</id>
<content type='text'>
This patch adds the "git interpret-trailers" command.
This command uses the previously added process_trailers()
function in trailer.c.

Signed-off-by: Christian Couder &lt;chriscool@tuxfamily.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>trailer: add data structures and basic functions</title>
<updated>2014-10-13T20:55:26Z</updated>
<author>
<name>Christian Couder</name>
<email>chriscool@tuxfamily.org</email>
</author>
<published>2014-10-13T18:16:23Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=9385b5d7065351104c7bfd3d1e53a28207b8b7ed'/>
<id>urn:sha1:9385b5d7065351104c7bfd3d1e53a28207b8b7ed</id>
<content type='text'>
We will use a doubly linked list to store all information
about trailers and their configuration.

This way we can easily remove or add trailers to or from
trailer lists while traversing the lists in either direction.

Signed-off-by: Christian Couder &lt;chriscool@tuxfamily.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>sha1-array: add test-sha1-array and basic tests</title>
<updated>2014-10-01T20:32:10Z</updated>
<author>
<name>René Scharfe</name>
<email>l.s.r@web.de</email>
</author>
<published>2014-10-01T15:00:33Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=38d905bf585999367a24fa27645ece6fe996d6f0'/>
<id>urn:sha1:38d905bf585999367a24fa27645ece6fe996d6f0</id>
<content type='text'>
Helped-by: Jeff King &lt;peff@peff.net&gt;
Helped-by: Eric Sunshine &lt;sunshine@sunshineco.com&gt;
Signed-off-by: Rene Scharfe &lt;l.s.r@web.de&gt;
Acked-by: Jeff King &lt;peff@peff.net&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'ir/makefile-typofix'</title>
<updated>2014-09-19T18:38:41Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2014-09-19T18:38:41Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=05fcf66b74309ab15617dbcf59be9a436f92c5ad'/>
<id>urn:sha1:05fcf66b74309ab15617dbcf59be9a436f92c5ad</id>
<content type='text'>
* ir/makefile-typofix:
  Makefile: fix some typos in the preamble
</content>
</entry>
<entry>
<title>Merge branch 'tb/crlf-tests'</title>
<updated>2014-09-19T18:38:37Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2014-09-19T18:38:37Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=70f003e1070f16594529d9fb0cc6c670c1e415e2'/>
<id>urn:sha1:70f003e1070f16594529d9fb0cc6c670c1e415e2</id>
<content type='text'>
* tb/crlf-tests:
  MinGW: update tests to handle a native eol of crlf
  Makefile: propagate NATIVE_CRLF to C
  t0027: Tests for core.eol=native, eol=lf, eol=crlf
</content>
</entry>
<entry>
<title>Makefile: fix some typos in the preamble</title>
<updated>2014-09-15T19:00:52Z</updated>
<author>
<name>Ian Liu Rodrigues</name>
<email>ian.liu88@gmail.com</email>
</author>
<published>2014-09-13T14:20:22Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=3b2c5413c90bafe0763b527b01da83712c856cf6'/>
<id>urn:sha1:3b2c5413c90bafe0763b527b01da83712c856cf6</id>
<content type='text'>
Signed-off-by: Ian Liu Rodrigues &lt;ian.liu88@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
</feed>
