From owner-svn-ports-head@freebsd.org Sat Jun 11 20:22:01 2016 Return-Path: Delivered-To: svn-ports-head@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 E2EC4AF048C; Sat, 11 Jun 2016 20:22:01 +0000 (UTC) (envelope-from garga@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 B0A11245B; Sat, 11 Jun 2016 20:22:01 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5BKM019005221; Sat, 11 Jun 2016 20:22:00 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5BKM0hZ005220; Sat, 11 Jun 2016 20:22:00 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201606112022.u5BKM0hZ005220@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Sat, 11 Jun 2016 20:22:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416750 - head/devel/git X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Jun 2016 20:22:02 -0000 Author: garga Date: Sat Jun 11 20:22:00 2016 New Revision: 416750 URL: https://svnweb.freebsd.org/changeset/ports/416750 Log: Respect BSD's STRIP instead of checking only WITH_DEBUG PR: 153541 Submitted by: swell.k@gmail.com Sponsored by: Rubicon Communications (Netgate) Modified: head/devel/git/Makefile Modified: head/devel/git/Makefile ============================================================================== --- head/devel/git/Makefile Sat Jun 11 20:11:14 2016 (r416749) +++ head/devel/git/Makefile Sat Jun 11 20:22:00 2016 (r416750) @@ -97,7 +97,7 @@ CVS_RUN_DEPENDS= cvsps:devel/cvsps .include # This is intentionally not exposed as an option. -.ifndef (WITH_DEBUG) +.if defined(STRIP) && ${STRIP} != "" ALL_TARGET= all strip .endif