add -f to rm configure.in commands (fixes flamebox build error message)

This commit is contained in:
Sears Russell 2009-04-18 22:09:22 +00:00
parent 62b692fd6d
commit 4bc6d083c6
3 changed files with 5 additions and 5 deletions

6
reconf
View file

@ -34,7 +34,7 @@ exit
qq(
#!/bin/sh
rm configure.in
rm -f configure.in
ln -s configure.in.automake configure.in
rm -f config.cache
rm -f acconfig.h
@ -52,7 +52,7 @@ exit
#
qq(
#!/bin/sh
rm configure.in
rm -f configure.in
ln -s configure.in.lite configure.in
rm -f config.cache
rm -f acconfig.h
@ -128,7 +128,7 @@ if(-f "ChangeLog") { $rmChangeLog = 0; } else { system("touch ChangeLog"); }
system("rm configure.in");
system("rm -f configure.in");
system("ln -s configure.in.automake configure.in");
system ("autoreconf -i", @ARGV);

View file

@ -1,6 +1,6 @@
#!/bin/sh
echo WARNING: This script is obsolete, but sometimes works when reconf does not.
rm configure.in
rm -f configure.in
ln -s configure.in.automake configure.in
rm -f config.cache
rm -f acconfig.h

View file

@ -1,6 +1,6 @@
#!/bin/sh
echo WARNING: This script is obsolete, but sometimes works when reconf does not.
rm configure.in
rm -f configure.in
ln -s configure.in.automake configure.in
rm -f config.cache
rm -f acconfig.h