diff options
author | joerg@mysql.com <> | 2004-11-04 11:18:12 +0100 |
---|---|---|
committer | joerg@mysql.com <> | 2004-11-04 11:18:12 +0100 |
commit | cb0bd6f57d87ad2bc3691a9dce013ce7e9419cd7 (patch) | |
tree | feea390d2e2778a9d15017e7835031bc95356d31 /Build-tools | |
parent | 10291f36647dfdf072db440c14a4faa5d072a371 (diff) | |
download | mariadb-git-cb0bd6f57d87ad2bc3691a9dce013ce7e9419cd7.tar.gz |
The files stored in "Docs/Images" within the "mysqldocs" BK tree must be included
in the source tar-ball for distribution. This is done by using the "DISTFILES" macro
in a new "Docs/Images/Makefile". As the source BK tree does not contain these files,
they are copied from the "mysqldocs" tree at release build time.
This changeset relies on "bk commit - mysqldoc tree (joerg:1.2276)" of today.
Diffstat (limited to 'Build-tools')
-rwxr-xr-x | Build-tools/Bootstrap | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Build-tools/Bootstrap b/Build-tools/Bootstrap index 8cad093bc5f..e21179fe78c 100755 --- a/Build-tools/Bootstrap +++ b/Build-tools/Bootstrap @@ -288,6 +288,10 @@ 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 + 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/!"); } # |