Commit: 9af1b0b772682c852ee57b0937bb2f0731f2842e Author: Anatol Belski <[email protected]> Fri, 18 Aug 2017 20:41:11 +0200 Parents: 1846695383188ddabebf0a9550854b2ab5154755 Branches: master
Link: http://git.php.net/?p=web/rmtools.git;a=commitdiff;h=9af1b0b772682c852ee57b0937bb2f0731f2842e Log: fix object dir removal Changed paths: M script/snap.php Diff: diff --git a/script/snap.php b/script/snap.php index d0ca3d3..29d9a04 100644 --- a/script/snap.php +++ b/script/snap.php @@ -127,16 +127,14 @@ for ($i = 0; $i < count($builds_top) && ($force || $branch->hasNewRevision()); $ only needs to be done once for setup. In further also, if there are any difference with TS/NTS, there might be some separate setup needed. */ - $rm_obj_dir = false; if (!$build->isPgoSetup()) { echo "Preparing PGO training environment\n"; $build->configure(); $build->make(); $build->pgoInit(); - $rm_obj_dir = true; } echo "Creating PGI build\n"; - $build->configure(' "--enable-pgi" ', $rm_obj_dir); + $build->configure(' "--enable-pgi" '); } else { $build->configure(); -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
