From owner-svn-ports-all@FreeBSD.ORG Mon May 27 07:58:11 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 6A121E86; Mon, 27 May 2013 07:58:11 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 5C8BDA60; Mon, 27 May 2013 07:58:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4R7wBMJ091256; Mon, 27 May 2013 07:58:11 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4R7wBmf091255; Mon, 27 May 2013 07:58:11 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201305270758.r4R7wBmf091255@svn.freebsd.org> From: Alexey Dokuchaev Date: Mon, 27 May 2013 07:58:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r319165 - head/sysutils/hfsutils 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.14 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: Mon, 27 May 2013 07:58:11 -0000 Author: danfe Date: Mon May 27 07:58:10 2013 New Revision: 319165 URL: http://svnweb.freebsd.org/changeset/ports/319165 Log: There is a bug (misfeature?) in our make(1) with certain Makefiles, when the build breaks once -jX is passed (with any X), e.g. for this port: cc ck_mdb.o ck_volume.o ck_btree.o hfsck.o util.o main.o ../suid.o ../version.o -L../libhfs -lhfs -o hfsck cc: ../suid.o: No such file or directory cc: ../version.o: No such file or directory *** Error code 1 1 error *** Error code 2 1 error ===> Compilation failed unexpectedly. Reluctantly force GNU make(1) for the time being with corresponding comment. Modified: head/sysutils/hfsutils/Makefile Modified: head/sysutils/hfsutils/Makefile ============================================================================== --- head/sysutils/hfsutils/Makefile Mon May 27 07:40:09 2013 (r319164) +++ head/sysutils/hfsutils/Makefile Mon May 27 07:58:10 2013 (r319165) @@ -15,6 +15,7 @@ LICENSE= GPLv2 CONFLICTS= hfs-[0-9]* GNU_CONFIGURE= yes +USE_GMAKE= yes # passing -jX breaks BSD make(1) ALL_TARGET= all hfsck/hfsck MAN1= hattrib.1 \