diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-11-06 05:11:16 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:44:31 +0100 |
commit | abee59c0f527c70ecb603ccd9a1cdf9ae95532ef (patch) | |
tree | d3a00cbe42327f676f793222483103e5c1af94cd | |
parent | eea596951d7106c6ac0326e51b707ce1295db576 (diff) | |
download | samba-abee59c0f527c70ecb603ccd9a1cdf9ae95532ef.tar.gz samba-abee59c0f527c70ecb603ccd9a1cdf9ae95532ef.tar.bz2 samba-abee59c0f527c70ecb603ccd9a1cdf9ae95532ef.zip |
r25862: Avoid po, causes trouble on BSD systems.
(This used to be commit c7fd5a5172d443034245c58020e379b0ca6234f2)
-rw-r--r-- | source4/lib/ldb/Makefile.in | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/source4/lib/ldb/Makefile.in b/source4/lib/ldb/Makefile.in index 7dc615f37c..a1f89fe626 100644 --- a/source4/lib/ldb/Makefile.in +++ b/source4/lib/ldb/Makefile.in @@ -103,11 +103,6 @@ showflags: .c.o: @echo Compiling $*.c @mkdir -p `dirname $@` - @$(CC) $(CFLAGS) -c $< -o $@ - -.c.po: - @echo Compiling $*.c - @mkdir -p `dirname $@` @$(CC) $(CFLAGS) $(PICFLAG) -c $< -o $@ dirs: @@ -120,8 +115,8 @@ lib/libldb.a: $(OBJS) 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/ldbreader: examples/ldbreader.o $(LIBS) 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 @@ doxygen: 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) |