svn commit: samba r18034 - in branches/SAMBA_4_0/source/lib/replace: .

tridge at samba.org tridge at samba.org
Mon Sep 4 12:36:07 GMT 2006


Author: tridge
Date: 2006-09-04 12:36:06 +0000 (Mon, 04 Sep 2006)
New Revision: 18034

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

Log:

fixed build of libreplace outside of source directory

Modified:
   branches/SAMBA_4_0/source/lib/replace/Makefile.in


Changeset:
Modified: branches/SAMBA_4_0/source/lib/replace/Makefile.in
===================================================================
--- branches/SAMBA_4_0/source/lib/replace/Makefile.in	2006-09-04 12:31:40 UTC (rev 18033)
+++ branches/SAMBA_4_0/source/lib/replace/Makefile.in	2006-09-04 12:36:06 UTC (rev 18034)
@@ -9,6 +9,8 @@
 builddir = @builddir@
 INSTALL = @INSTALL@
 
+CFLAGS=-I. -I$(srcdir) @CFLAGS@
+
 OBJS = dlfcn.o getpass.o replace.o snprintf.o
 
 all: libreplace.a
@@ -31,7 +33,7 @@
 .c.o:
 	@echo Compiling $*.c
 	@mkdir -p `dirname $@`
-	$(CC) $(CFLAGS) -c $< -o $@
+	@$(CC) $(CFLAGS) -c $< -o $@
 
 clean:
 	rm -f *.o *.a testsuite



More information about the samba-cvs mailing list