svn commit: samba r12613 - in branches/SAMBA_4_0/source/build/smb_build: .

metze at samba.org metze at samba.org
Fri Dec 30 17:39:03 GMT 2005


Author: metze
Date: 2005-12-30 17:39:03 +0000 (Fri, 30 Dec 2005)
New Revision: 12613

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=12613

Log:
workarround a BSD make bug, where $< gets expanded to 'torture/libnet/userman.c'
when $@ is 'libnet/userman.o'

metze
Modified:
   branches/SAMBA_4_0/source/build/smb_build/makefile.pm


Changeset:
Modified: branches/SAMBA_4_0/source/build/smb_build/makefile.pm
===================================================================
--- branches/SAMBA_4_0/source/build/smb_build/makefile.pm	2005-12-30 17:23:20 UTC (rev 12612)
+++ branches/SAMBA_4_0/source/build/smb_build/makefile.pm	2005-12-30 17:39:03 UTC (rev 12613)
@@ -184,7 +184,7 @@
 # $comment
 .$src.$dst:
 	\@echo $message \$\*.$src
-	\@\$(CC) `script/cflags.sh \$\@` \$(CFLAGS) $flags -c \$< -o \$\@
+	\@\$(CC) `script/cflags.sh \$\@` \$(CFLAGS) $flags -c \$\*.$src -o \$\@
 __EOD__
 );
 	if ($self->{config}->{BROKEN_CC} eq "yes") {
@@ -202,7 +202,7 @@
 	$self->output(<< "__EOD__"
 .c.ho:
 	\@echo Compiling \$\*.c with host compiler
-	\@\$(HOSTCC) `script/cflags.sh \$\@` \$(CFLAGS) -c \$< -o \$\@
+	\@\$(HOSTCC) `script/cflags.sh \$\@` \$(CFLAGS) -c \$\*.c -o \$\@
 __EOD__
 );
 	if ($self->{config}->{BROKEN_CC} eq "yes") {



More information about the samba-cvs mailing list