Skip to content

Commit

Permalink
Update release script to work with new boost doc build.
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskohlhoff committed Sep 18, 2016
1 parent 912727c commit f1a9c81
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions asio/release.pl
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ sub build_asio_doc
{
$ENV{BOOST_ROOT} = abs_path("../boost");
system("rm -rf doc");
my $bjam = abs_path(glob("../boost/bjam"));
my $bjam = abs_path(glob("../boost/b2"));
chdir("src/doc");
system("$bjam clean");
system("rm -rf html");
Expand Down Expand Up @@ -234,10 +234,10 @@ sub make_asio_packages
sub build_boost_asio_doc
{
my $cwd = getcwd();
my $bjam = abs_path(glob("../boost/bjam"));
chdir("../boost/doc");
my $bjam = abs_path(glob("../boost/b2"));
chdir("../boost/libs/asio/doc");
system("$bjam clean");
system("rm -rf html/boost_asio");
system("rm -rf ../../../doc/html/boost_asio");
system("$bjam asio");
chdir($cwd);
}
Expand Down

0 comments on commit f1a9c81

Please sign in to comment.