Skip to content

Commit 15c9560

Browse files
committed
Make "buildconf --force" more robust, per IRC chat. Not backported to 5.3 to avoid destabilization.
1 parent 7afd050 commit 15c9560

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

buildconf

+6-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,12 @@ if test "$dev" = "0" -a "$devok" = "0"; then
3232
echo "use buildconf --force to override this check."
3333
exit 1
3434
fi
35-
35+
36+
if test "$devok" = "1"; then
37+
echo "Removing configure caches"
38+
rm -rf autom4te.cache config.cache
39+
fi
40+
3641
rm -f generated_lists
3742

3843
if test "$debug" = "yes"; then

0 commit comments

Comments
 (0)