From 025d0733f2121f97ef4739a9208b74aed857bdaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Thu, 23 Dec 2004 21:30:32 +0000 Subject: [PATCH] It seems libRK and libCanna don't like this CCFLAGS position Hope it doesn't break anything git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10526 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- Jamrules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jamrules b/Jamrules index 8157e68085..7224b0ba98 100644 --- a/Jamrules +++ b/Jamrules @@ -388,7 +388,7 @@ rule UserObject # Override the default to give "prettier" command lines. actions Cc { - $(CC) -c "$(2)" $(CCFLAGS) $(CCDEFS) $(CCHDRS) -o "$(1)" ; + $(CC) $(CCFLAGS) -c "$(2)" $(CCDEFS) $(CCHDRS) -o "$(1)" ; } actions C++