Author: jelmer Date: 2007-11-06 05:11:16 +0000 (Tue, 06 Nov 2007) New Revision: 25862
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=25862 Log: Avoid po, causes trouble on BSD systems. Modified: branches/SAMBA_4_0/ branches/SAMBA_4_0/source/lib/ldb/Makefile.in Changeset: Property changes on: branches/SAMBA_4_0 ___________________________________________________________________ Name: bzr:revision-info ...skipped... Name: bzr:revision-id:v3-trunk0 ...skipped... Modified: branches/SAMBA_4_0/source/lib/ldb/Makefile.in =================================================================== --- branches/SAMBA_4_0/source/lib/ldb/Makefile.in 2007-11-06 04:59:50 UTC (rev 25861) +++ branches/SAMBA_4_0/source/lib/ldb/Makefile.in 2007-11-06 05:11:16 UTC (rev 25862) @@ -103,11 +103,6 @@ .c.o: @echo Compiling $*.c @mkdir -p `dirname [EMAIL PROTECTED] - @$(CC) $(CFLAGS) -c $< -o $@ - -.c.po: - @echo Compiling $*.c - @mkdir -p `dirname [EMAIL PROTECTED] @$(CC) $(CFLAGS) $(PICFLAG) -c $< -o $@ dirs: @@ -120,8 +115,8 @@ lib/libnss_ldb.so.2: $(NSS_OBJ) $(LIBS) bin/libldb.a $(CC) $(SHLD_FLAGS) -Wl,-soname,libnss_ldb.so.2 -o lib/libnss_ldb.so.2 $(NSS_OBJ) $(OBJS) $(LIB_FLAGS) -sample_module.$(SHLIBEXT): tests/sample_module.po - $(CC) $(SHLD_FLAGS) $(LIBS) $(LDFLAGS) -o $@ tests/sample_module.po +sample_module.$(SHLIBEXT): tests/sample_module.o + $(CC) $(SHLD_FLAGS) $(LIBS) $(LDFLAGS) -o $@ tests/sample_module.o bin/ldbadd: tools/ldbadd.o tools/cmdline.o $(LIBS) $(CC) -o bin/ldbadd tools/ldbadd.o tools/cmdline.o $(LIB_FLAGS) $(LD_EXPORT_DYNAMIC) @@ -153,7 +148,7 @@ examples/ldifreader: examples/ldifreader.o $(LIBS) $(CC) -o examples/ldifreader examples/ldifreader.o $(LIB_FLAGS) -.SUFFIXES: .1 .1.xml .3 .3.xml .xml .html .po +.SUFFIXES: .1 .1.xml .3 .3.xml .xml .html manpages: @$(srcdir)/docs/builddocs.sh "$(XSLTPROC)" "$(srcdir)" @@ -162,7 +157,7 @@ test -z "$(DOXYGEN)" || (cd $(srcdir) && "$(DOXYGEN)") clean: - rm -f *.po */*.po *.o */*.o *.gcov */*.gc?? tdbtest.ldb* + rm -f *.o */*.o *.gcov */*.gc?? tdbtest.ldb* rm -f $(BINS) $(TDB_OBJ) $(TALLOC_OBJ) $(LDB_LIB) $(NSS_LIB) rm -f man/*.1 man/*.3 man/*.html rm -f $(EXAMPLES)
