From owner-svn-ports-all@FreeBSD.ORG Sat May 24 14:05:31 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 21E2A3A4; Sat, 24 May 2014 14:05:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0F9BF2E57; Sat, 24 May 2014 14:05:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4OE5UZ1013717; Sat, 24 May 2014 14:05:30 GMT (envelope-from grembo@svn.freebsd.org) Received: (from grembo@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4OE5UqY013716; Sat, 24 May 2014 14:05:30 GMT (envelope-from grembo@svn.freebsd.org) Message-Id: <201405241405.s4OE5UqY013716@svn.freebsd.org> From: Michael Gmelin Date: Sat, 24 May 2014 14:05:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r355022 - head/databases/mariadb55-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 May 2014 14:05:31 -0000 Author: grembo Date: Sat May 24 14:05:30 2014 New Revision: 355022 URL: http://svnweb.freebsd.org/changeset/ports/355022 QAT: https://qat.redports.org/buildarchive/r355022/ Log: It turns out that cmake is still using gmake during the configure phase, even though build is then done using make(1). If gmake is not available on the host, cmake falls back to make(1) to configure and the resulting Makefiles won't work on either, make or gmake. Therefore I'll rollback to using gmake all the time. Reviewed by: flo (mentor) Approved by: flo (mentor) Modified: head/databases/mariadb55-server/Makefile Modified: head/databases/mariadb55-server/Makefile ============================================================================== --- head/databases/mariadb55-server/Makefile Sat May 24 14:00:47 2014 (r355021) +++ head/databases/mariadb55-server/Makefile Sat May 24 14:05:30 2014 (r355022) @@ -22,7 +22,7 @@ SUB_FILES= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message SLAVEDIRS= databases/mariadb55-client -USES= cmake shebangfix +USES= cmake gmake shebangfix SHEBANG_FILES= scripts/*.sh NO_OPTIONS_SORT=yes