From ba750f50d3f35193f26fa1a6628eaa33afd3c07c Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 5 Jun 2005 22:59:34 +0000 Subject: r7311: Use TARGET_CFLAGS for depend list as well (This used to be commit 1f7a57d8d82fb759ba8997bc91405add9b46e129) --- source4/build/smb_build/makefile.pm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source4/build/smb_build/makefile.pm') diff --git a/source4/build/smb_build/makefile.pm b/source4/build/smb_build/makefile.pm index 11d1693ce7..c1f952f508 100644 --- a/source4/build/smb_build/makefile.pm +++ b/source4/build/smb_build/makefile.pm @@ -364,13 +364,13 @@ sub _prepare_objlist_rule($) $output = "$ctx->{TYPE}_$ctx->{NAME}_DEPEND_LIST = $tmpdepend\n"; - $output .= "$ctx->{TYPE}_$ctx->{NAME}: \$($ctx->{TYPE}_$ctx->{NAME}_DEPEND_LIST)"; + $output .= "$ctx->{TYPE}_$ctx->{NAME}: "; if (defined ($ctx->{TARGET_CFLAGS})) { - $output .= "\n\t@\$(MAKE) \$($ctx->{TYPE}_$ctx->{NAME}_OBJS) TARGET_CFLAGS=\"" . join(' ', @{$ctx->{TARGET_CFLAGS}}) . "\"\n"; - } else { - $output .=" \$($ctx->{TYPE}_$ctx->{NAME}_OBJS)\n"; - } + $output .= "\n\t@\$(MAKE) TARGET_CFLAGS=\"" . join(' ', @{$ctx->{TARGET_CFLAGS}}) . "\" "; + } + + $output .= "\$($ctx->{TYPE}_$ctx->{NAME}_DEPEND_LIST) \$($ctx->{TYPE}_$ctx->{NAME}_OBJS)\n"; return $output; } -- cgit