From owner-svn-ports-all@freebsd.org Sat Feb 13 11:35:32 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BB03FAA608F; Sat, 13 Feb 2016 11:35:32 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 89BF818D3; Sat, 13 Feb 2016 11:35:32 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1DBZVHp090063; Sat, 13 Feb 2016 11:35:31 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1DBZV8R090061; Sat, 13 Feb 2016 11:35:31 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201602131135.u1DBZV8R090061@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Sat, 13 Feb 2016 11:35:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408786 - in head/devel/libbrotli: . files 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.20 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, 13 Feb 2016 11:35:32 -0000 Author: osa Date: Sat Feb 13 11:35:31 2016 New Revision: 408786 URL: https://svnweb.freebsd.org/changeset/ports/408786 Log: Fix the build by removing needless check for a git client. Bump PORTREVISION. Modified: head/devel/libbrotli/Makefile head/devel/libbrotli/files/patch-autogen.sh Modified: head/devel/libbrotli/Makefile ============================================================================== --- head/devel/libbrotli/Makefile Sat Feb 13 11:32:30 2016 (r408785) +++ head/devel/libbrotli/Makefile Sat Feb 13 11:35:31 2016 (r408786) @@ -3,6 +3,7 @@ PORTNAME= libbrotli PORTVERSION= ${BROTLI_VERSION} +PORTREVISION= 1 CATEGORIES= devel archivers MAINTAINER= osa@FreeBSD.org Modified: head/devel/libbrotli/files/patch-autogen.sh ============================================================================== --- head/devel/libbrotli/files/patch-autogen.sh Sat Feb 13 11:32:30 2016 (r408785) +++ head/devel/libbrotli/files/patch-autogen.sh Sat Feb 13 11:35:31 2016 (r408786) @@ -1,9 +1,15 @@ --- autogen.sh.orig 2016-01-20 21:31:42 UTC +++ autogen.sh -@@ -12,8 +12,6 @@ if test $? -ne 0; then +@@ -6,14 +6,6 @@ if test $? -ne 0; then exit 1 fi +-GIT=`which git 2>/dev/null` +-if test $? -ne 0; then +- echo "No 'git' found. You must install the git package." +- exit 1 +-fi +- -$GIT submodule init -$GIT submodule update