diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-09-05 13:43:35 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:17:14 -0500 |
commit | bf0250c621f10a6548eb75601cb61a23286f6e71 (patch) | |
tree | b0715f9c7756417abecae19a8c186000234d990f /source4/lib/talloc | |
parent | 72c697167e6abd5a09f480ffd7735a306241a1f7 (diff) | |
download | samba-bf0250c621f10a6548eb75601cb61a23286f6e71.tar.gz samba-bf0250c621f10a6548eb75601cb61a23286f6e71.tar.bz2 samba-bf0250c621f10a6548eb75601cb61a23286f6e71.zip |
r18089: sometimes autoconf picks up some old stuff:
- remove configure and config.h.in
- cleanup after autoconf and autoheader are done
metze
(This used to be commit 8246d8ecd2679af59e32901174638a166ed69222)
Diffstat (limited to 'source4/lib/talloc')
-rwxr-xr-x | source4/lib/talloc/autogen.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/lib/talloc/autogen.sh b/source4/lib/talloc/autogen.sh index 1ebdb211d9..bf84eeee19 100755 --- a/source4/lib/talloc/autogen.sh +++ b/source4/lib/talloc/autogen.sh @@ -1,9 +1,14 @@ #!/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 |