Makefile: remove pointless conditional assignment in SunOS section
commitb42c9af2cd3dcc56c8aae9a7d73ed1fc342e1f02
authorBrandon Casey <drafnel@gmail.com>
Thu, 27 Aug 2009 15:35:46 +0000 (27 10:35 -0500)
committerJunio C Hamano <gitster@pobox.com>
Thu, 27 Aug 2009 23:20:10 +0000 (27 16:20 -0700)
treed115946c70ed45a809fd5ddab6d0410e95e983ef
parent68ea4741643d9e7c4bdac7cbbe6292edc69430ef
Makefile: remove pointless conditional assignment in SunOS section

It is true that NEEDS_RESOLV is needed on SunOS if NO_IPV6 is set since
hstrerror() resides in libresolv, but performing this test at its current
location is not very useful.  It will only have any effect if the user
modifies the make variables from the make command line, and will have no
effect if a config.mak file is used.  A better location for this
conditional would have been further down in the Makefile after the
config.mak and config.mak.autogen had been parsed.  Rather than adding
clutter to the Makefile for a conditional that will likely never be
triggered, just remove it, and any user on SunOS that manually sets NO_IPV6
can also set NEEDS_RESOLV.

Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Makefile