mirror of
https://github.com/samba-team/samba.git
synced 2025-01-15 23:24:37 +03:00
136f369b23
(This used to be commit 10415bb738d51afdebbfeae976923e086805ae84)
18 lines
380 B
Bash
Executable File
18 lines
380 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"
|
|
IPATHS="$IPATHS -I lib/talloc -I talloc -I ../talloc"
|
|
autoconf $IPATHS || exit 1
|
|
autoheader $IPATHS || exit 1
|
|
|
|
rm -rf autom4te.cache
|
|
|
|
swig -O -Wall -python -keyword events.i # Ignore errors for now
|
|
|
|
echo "Now run ./configure and then make."
|
|
exit 0
|
|
|