1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-29 21:47:30 +03:00
Andrew Tridgell a395425870 r22424: fixed the bad merge (thanks to metze for pointing out)
(This used to be commit bffb8f88006fd2530cad270df642d9a23a01b34b)
2007-10-10 14:51:18 -05:00

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