diff options
author | Michael Adam <obnox@samba.org> | 2008-02-21 10:26:54 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-02-21 10:27:56 +0100 |
commit | e823c9f2376b718a0041da7ae395722c925b03f1 (patch) | |
tree | 6d8528c0b621a24568ef5f628e58eb4af12ca2b0 | |
parent | 94ed19c4a89003cb53c9dcfd068246806028e038 (diff) | |
download | samba-e823c9f2376b718a0041da7ae395722c925b03f1.tar.gz samba-e823c9f2376b718a0041da7ae395722c925b03f1.tar.bz2 samba-e823c9f2376b718a0041da7ae395722c925b03f1.zip |
Fix the build on irix: Prevent empty line in TDB_OBJ
This leads to a Makfile syntax error in the prerequisites for
bin/smbd. Wow, irix is really picky!
Michael
(This used to be commit 011f24c6c95c92417d877886ad87d2a2dd82056e)
-rw-r--r-- | source3/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 5c0b73a694..dce448d135 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -242,8 +242,8 @@ LIBTDB_OBJ0 = @TDB_OBJS@ LIBTDB_OBJ = $(LIBTDB_OBJ0) $(LIBREPLACE_OBJ) TDB_OBJ = lib/util_tdb.o \ - lib/dbwrap.o lib/dbwrap_tdb.o lib/dbwrap_ctdb.o lib/dbwrap_rbt.o \ - @LIBTDB_STATIC@ + lib/dbwrap.o lib/dbwrap_tdb.o lib/dbwrap_ctdb.o \ + lib/dbwrap_rbt.o @LIBTDB_STATIC@ SMBLDAP_OBJ = @SMBLDAP@ @SMBLDAPUTIL@ |