From owner-svn-ports-all@FreeBSD.ORG Thu Dec 26 13:05:03 2013 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 B6418957; Thu, 26 Dec 2013 13:05:03 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A22261EAB; Thu, 26 Dec 2013 13:05:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBQD531H084256; Thu, 26 Dec 2013 13:05:03 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBQD53ga084255; Thu, 26 Dec 2013 13:05:03 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201312261305.rBQD53ga084255@svn.freebsd.org> From: Mathieu Arnold Date: Thu, 26 Dec 2013 13:05:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r337490 - branches/2014Q1/sysutils/hdup/files X-SVN-Group: ports-branches 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.17 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: Thu, 26 Dec 2013 13:05:03 -0000 Author: mat Date: Thu Dec 26 13:05:03 2013 New Revision: 337490 URL: http://svnweb.freebsd.org/changeset/ports/337490 Log: MFH: r337389 sysutils/hdup: Unbreak on FreeBSD 10+ The breakage was caused by processing makefiles with bmake instead of the specified gmake. PR: ports/184617 Approved by: maintainer timeout Approved by: portmgr (implicit) Added: branches/2014Q1/sysutils/hdup/files/patch-Makefile.in - copied unchanged from r337389, head/sysutils/hdup/files/patch-Makefile.in Modified: Directory Properties: branches/2014Q1/ (props changed) Copied: branches/2014Q1/sysutils/hdup/files/patch-Makefile.in (from r337389, head/sysutils/hdup/files/patch-Makefile.in) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2014Q1/sysutils/hdup/files/patch-Makefile.in Thu Dec 26 13:05:03 2013 (r337490, copy of r337389, head/sysutils/hdup/files/patch-Makefile.in) @@ -0,0 +1,12 @@ +--- Makefile.in.orig 2005-12-09 19:19:50.000000000 +0000 ++++ Makefile.in +@@ -32,7 +32,7 @@ docclean: + @echo "done" + + uninstall: +- @(cd src ; make uninstall ) ++ @(cd src ; $(MAKE) uninstall ) + + install: +- @(cd src ; make install ) ++ @(cd src ; $(MAKE) install )