Skip to content

Commit

Permalink
Delete autom4te.cache in addition to config.cache ...
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys committed Jan 22, 2011
1 parent 2513693 commit 738cd8b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makegen
Expand Up @@ -47,7 +47,7 @@ print <<EOF;

bootstrap_clean: clean
rm -rf bootstrap_compiler
rm -f config.cache
rm -rf config.cache autom4te.cache
\@echo
\@echo "Now run $recheck to prepare for normal builds."

Expand All @@ -66,7 +66,7 @@ if ($enable_bootstrap) {
# XXX - this directory name is confusing
push(@compile_commands, 'mkdir bootstrap_compiler');
push(@compile_commands, 'cp d2c/compiler/main/d2c' . $dot_exe . ' bootstrap_compiler');
push(@compile_commands, 'rm -f config.cache');
push(@compile_commands, 'rm -rf config.cache autom4te.cache');
push(@compile_commands, $recheck);
push(@compile_commands, '$(MAKE) clean');
push(@compile_commands, '$(MAKE)');
Expand Down
2 changes: 1 addition & 1 deletion autogen.sh
Expand Up @@ -11,6 +11,6 @@ if test -z "$*"; then
echo "to pass any to it, please specify them on the $0 command line."
fi

rm -rf config.cache autom4te-*.cache
rm -rf config.cache autom4te*.cache
$srcdir/configure "$@"

0 comments on commit 738cd8b

Please sign in to comment.