From f7c70aef736108fdfce030d6c7b0a64da76db969 Mon Sep 17 00:00:00 2001 From: Azat Khuzhin Date: Tue, 6 Dec 2016 13:06:08 +0300 Subject: [PATCH] vagrant/osx: use make instead of gmake (there is no gmake) $ make --version GNU Make 3.81 Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. This program built for i386-apple-darwin11.3.0 --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 133e8fad..94b2831b 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -266,7 +266,7 @@ Vagrant.configure("2") do |config| cd /vagrant ./autogen.sh ./configure - gmake -j4 verify + make -j4 verify SHELL end end -- 2.40.0