add -f to rm configure.in commands (fixes flamebox build error message)
This commit is contained in:
parent
62b692fd6d
commit
4bc6d083c6
3 changed files with 5 additions and 5 deletions
6
reconf
6
reconf
|
@ -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);
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue