Commit:    ea3d1a9fe56572bf52069e5927cea312cf830bb1
Author:    Anatol Belski <[email protected]>         Thu, 2 Nov 2017 09:10:20 +0100
Parents:   7a4d416b7f795358ee5784414e33f1cf9fd1ede3
Branches:  master

Link:       
http://git.php.net/?p=web/rmtools.git;a=commitdiff;h=ea3d1a9fe56572bf52069e5927cea312cf830bb1

Log:
Add /nologo

Changed paths:
  M  include/BuildVC.php
  M  include/PeclBuildVC.php


Diff:
diff --git a/include/BuildVC.php b/include/BuildVC.php
index 1e42990..f8331a3 100644
--- a/include/BuildVC.php
+++ b/include/BuildVC.php
@@ -187,7 +187,7 @@ class BuildVC {
 
        function make($target = false)
        {
-               $cmd = 'nmake' . ($target ?: $target);
+               $cmd = 'nmake /nologo' . ($target ?: $target);
                $ret = exec_single_log($cmd, $this->build_dir, $this->env);
                if (!$ret) {
                        throw new \Exception('Make failed');
@@ -197,7 +197,7 @@ class BuildVC {
 
        function makeArchive()
        {
-               $cmd = 'nmake snap';
+               $cmd = 'nmake /nologo snap';
                $ret = exec_single_log($cmd, $this->build_dir, $this->env);
                if (!$ret) {
                        throw new \Exception('Make snap failed');
diff --git a/include/PeclBuildVC.php b/include/PeclBuildVC.php
index 938c607..30a2e1c 100644
--- a/include/PeclBuildVC.php
+++ b/include/PeclBuildVC.php
@@ -132,7 +132,7 @@ class PeclBuildVC {
 
        function make($target = false)
        {
-               $cmd = 'nmake' . ($target ?: $target);
+               $cmd = 'nmake /nologo' . ($target ?: $target);
                $ret = exec_single_log($cmd, $this->build_dir, $this->env);
                if (!$ret) {
                        throw new \Exception('Make failed');
@@ -142,7 +142,7 @@ class PeclBuildVC {
 
        function makeArchive()
        {
-               $cmd = 'nmake snap';
+               $cmd = 'nmake /nologo snap';
                $ret = exec_single_log($cmd, $this->build_dir, $this->env);
                if (!$ret) {
                        throw new \Exception('Make snap failed');


--
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to