From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Apr 11 16:40:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.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 CB0E386C for ; Fri, 11 Apr 2014 16:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 A80EA1195 for ; Fri, 11 Apr 2014 16:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3BGe01o034365 for ; Fri, 11 Apr 2014 16:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3BGe0QB034363; Fri, 11 Apr 2014 16:40:00 GMT (envelope-from gnats) Resent-Date: Fri, 11 Apr 2014 16:40:00 GMT Resent-Message-Id: <201404111640.s3BGe0QB034363@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jia-Shiun Li Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 07A3518C for ; Fri, 11 Apr 2014 16:31:19 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E93AC1075 for ; Fri, 11 Apr 2014 16:31:18 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s3BGVINh019373 for ; Fri, 11 Apr 2014 16:31:18 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s3BGVI1s019363; Fri, 11 Apr 2014 16:31:18 GMT (envelope-from nobody) Message-Id: <201404111631.s3BGVI1s019363@cgiserv.freebsd.org> Date: Fri, 11 Apr 2014 16:31:18 GMT From: Jia-Shiun Li To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/188463: editors/lvim now builds ok without MAKE_JOBS_UNAFE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Apr 2014 16:40:01 -0000 >Number: 188463 >Category: ports >Synopsis: editors/lvim now builds ok without MAKE_JOBS_UNAFE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Apr 11 16:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Jia-Shiun Li >Release: 11.0-CURRENT >Organization: >Environment: jsli@4cbsd:/mnt/doxygen # uname -a FreeBSD 4cbsd 11.0-CURRENT FreeBSD 11.0-CURRENT #30 r264316: Thu Apr 10 23:46:51 CST 2014 jsli@4cbsd:/usr/obj/usr/src/sys/Minimal amd64 >Description: editors/vim was made MAKE_JOBS_UNSAFE in r275776 on Sat Jun 18 14:37:18 2011 UTC due to py_config.o. Reference to py_config was removed in upstream changeset 3707:c03b6363492b [1] on Jul 25, 2012. Now it builds fine without MAKE_JOBS_UNSAFE. jsli@4cbsd:/mnt/doxygen # sysctl kern.smp.cpus hw.model kern.smp.cpus: 4 hw.model: Intel(R) Core(TM) i5-3450 CPU @ 3.10GHz jsli@4cbsd:/mnt/vim # time make -DBATCH MAKE_JOBS_NUMBER=16 .. link.sh: Linked fine 65.279u 10.105s 0:31.21 241.4% 34339+350k 0+505io 0pf+0w jsli@4cbsd:/mnt/vim # [1] https://code.google.com/p/vim/source/detail?r=c03b6363492b26c02b4f8a725a91849a1a5cf548 >How-To-Repeat: >Fix: Remove the line MAKE_JOBS_UNAFE. One-line patch attached. Patch attached with submission follows: diff -bu vim.orig/Makefile vim/Makefile --- vim.orig/Makefile 2014-04-06 00:38:09.000000000 +0800 +++ vim/Makefile 2014-04-12 00:26:03.000000000 +0800 @@ -31,7 +31,6 @@ ALL_TARGET= # empty MAKE_ARGS+= CC=${CC} CONF_ARGS="--prefix=${PREFIX} ${CSCOPE_ARG}" STRIP=${STRIP_CMD} CONF_OPT_MULTIBYTE=--enable-multibyte CONF_TERM_LIB=--with-tlib=termlib -MAKE_JOBS_UNSAFE= yes PATCH_DIST_ARGS=--batch --directory ${WRKSRC} --forward --quiet --remove-empty-files ${PATCH_DIST_STRIP} REINPLACE_ARGS= -i '' USES= iconv pkgconfig shebangfix tar:bzip2 Common subdirectories: vim.orig/files and vim/files >Release-Note: >Audit-Trail: >Unformatted: