git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Include local config before platform tweaks
@ 2006-09-05 22:00 Brian Gernhardt
  2006-09-05 22:13 ` Junio C Hamano
  0 siblings, 1 reply; 5+ messages in thread
From: Brian Gernhardt @ 2006-09-05 22:00 UTC (permalink / raw)
  To: git

Having config.mak included after the platform tweaks ignores NO_FINK  
or NO_DARWIN_PORTS in that file.  Simply including the config earlier  
fixes that.

Signed-off-by: Brian Gernhardt <benji@silverinsanity.com>
---
Makefile |    6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index 7b3114f..81902d4 100644
--- a/Makefile
+++ b/Makefile
@@ -300,6 +300,9 @@ BUILTIN_OBJS = \
GITLIBS = $(LIB_FILE) $(XDIFF_LIB)
LIBS = $(GITLIBS) -lz
+-include config.mak.autogen
+-include config.mak
+
#
# Platform specific tweaks
#
@@ -403,9 +406,6 @@ ifneq (,$(findstring arm,$(uname_M)))
	ARM_SHA1 = YesPlease
endif
--include config.mak.autogen
--include config.mak
-
ifdef WITH_OWN_SUBPROCESS_PY
	PYMODULES += compat/subprocess.py
else

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2006-09-06 19:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-05 22:00 [PATCH] Include local config before platform tweaks Brian Gernhardt
2006-09-05 22:13 ` Junio C Hamano
2006-09-06  3:31   ` Shawn Pearce
2006-09-06  7:18     ` Junio C Hamano
2006-09-06 19:13       ` Brian Gernhardt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).