1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

r19459: Do not build nss by default (it probably works only on linux)

Fix warning with standalone.sh if build exists
This commit is contained in:
Simo Sorce 2006-10-22 22:06:08 +00:00 committed by Gerald (Jerry) Carter
parent 724d8fb153
commit d74fac5740
2 changed files with 10 additions and 4 deletions

View File

@ -57,7 +57,12 @@ EXAMPLES = examples/ldbreader examples/ldifreader
DIRS = lib bin common ldb_tdb ldb_ldap ldb_sqlite3 modules tools examples
all: showflags dirs $(OBJS) $(LDB_LIB) $(BINS) $(EXAMPLES) manpages $(NSS_LIB)
nss: nssdir $(NSS_LIB)
nssdir:
@mkdir -p $(NSSDIR)
all: showflags dirs $(OBJS) $(LDB_LIB) $(BINS) $(EXAMPLES) manpages
showflags:
@echo 'ldb will be compiled with flags:'

View File

@ -14,8 +14,9 @@ make clean
./autogen.sh
mkdir build
cd build
mkdir -p build
cd build
../configure
make
make dirs
make all