mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
7f2e59e4c1
(this is a gratuituous commit to trigger the build farm to rebuild ldb on all systems)
19 lines
353 B
Bash
Executable File
19 lines
353 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Using autotools based build"
|
|
|
|
rm -rf autom4te.cache
|
|
rm -f configure config.h.in
|
|
|
|
IPATHS="-I libreplace -I lib/replace -I ../libreplace -I ../replace -I ../../../lib/replace"
|
|
IPATHS="$IPATHS -I ./external"
|
|
|
|
autoheader $IPATHS || exit 1
|
|
autoconf $IPATHS || exit 1
|
|
|
|
rm -rf autom4te.cache
|
|
|
|
echo "Now run ./configure and then make."
|
|
exit 0
|
|
|