mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
42d131d951
metze Signed-off-by: Stefan Metzmacher <metze@samba.org> (This used to be ctdb commit 1d5c5a221c28f1dc652a80ed516a0f18ba588d9f)
15 lines
261 B
Bash
Executable File
15 lines
261 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -rf autom4te.cache
|
|
rm -f configure config.h.in
|
|
|
|
IPATHS="-I libreplace -I lib/replace -I ../libreplace -I ../replace"
|
|
autoconf $IPATHS || exit 1
|
|
autoheader $IPATHS || exit 1
|
|
|
|
rm -rf autom4te.cache
|
|
|
|
echo "Now run ./configure and then make."
|
|
exit 0
|
|
|