diff options
author | joerg@mysql.com <> | 2004-11-05 15:22:03 +0100 |
---|---|---|
committer | joerg@mysql.com <> | 2004-11-05 15:22:03 +0100 |
commit | 5e2b6e3035e6943f0fa8de61d1b8bdcf198617a6 (patch) | |
tree | 4f0975c13548796acf808ff42c0759d305702173 /Build-tools | |
parent | 630ea6e63c02c4ba2dbf8a811a7c35fdda370174 (diff) | |
download | mariadb-git-5e2b6e3035e6943f0fa8de61d1b8bdcf198617a6.tar.gz |
Change "Bootstrap" so that it will not fail on BK source trees of other versions;
this is important because this 4.0 "Bootstrap" is the one generally used on host "build".
Diffstat (limited to 'Build-tools')
-rwxr-xr-x | Build-tools/Bootstrap | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build-tools/Bootstrap b/Build-tools/Bootstrap index e21179fe78c..a7d347ba32f 100755 --- a/Build-tools/Bootstrap +++ b/Build-tools/Bootstrap @@ -288,7 +288,7 @@ unless ($opt_skip_manual) system ("bk cat $opt_docdir/Docs/$file.texi > $target_dir/Docs/$file.texi") == 0 or &abort("Could not update $file.texi in $target_dir/Docs/!"); } - system ("rm $target_dir/Docs/Images/Makefile*") == 0 + system ("rm -f $target_dir/Docs/Images/Makefile*") == 0 or &abort("Could not remove Makefiles in $target_dir/Docs/Images/!"); system ("cp $opt_docdir/Docs/Images/*.* $target_dir/Docs/Images") == 0 or &abort("Could not copy image files in $target_dir/Docs/Images/!"); |