From owner-svn-ports-all@freebsd.org Sat Feb 6 23:11:41 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 D3854AA0E5E; Sat, 6 Feb 2016 23:11:41 +0000 (UTC) (envelope-from marino@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 A461FAB2; Sat, 6 Feb 2016 23:11:41 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u16NBeFh017101; Sat, 6 Feb 2016 23:11:40 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u16NBe3H017100; Sat, 6 Feb 2016 23:11:40 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201602062311.u16NBe3H017100@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sat, 6 Feb 2016 23:11:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408318 - head/devel/ncurses 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, 06 Feb 2016 23:11:41 -0000 Author: marino Date: Sat Feb 6 23:11:40 2016 New Revision: 408318 URL: https://svnweb.freebsd.org/changeset/ports/408318 Log: devel/ncurses: Prevent configure from touching LOCALBASE Synth detected that devel/ncurses was touching $LOCALBASE/lib during the build, and narrowing it down, it turned out to be configure: Modified files/directories: usr/local/lib [ modification ] Throught manual inspect, I tracked this down to the long names support test. Caching the conf value to "yes" results in all phases between configure and stage (inclusive) not touch base. Approved by: just fix it Modified: head/devel/ncurses/Makefile Modified: head/devel/ncurses/Makefile ============================================================================== --- head/devel/ncurses/Makefile Sat Feb 6 22:55:10 2016 (r408317) +++ head/devel/ncurses/Makefile Sat Feb 6 23:11:40 2016 (r408318) @@ -32,7 +32,8 @@ CONFIGURE_ARGS= --datadir=${PREFIX}/shar --without-manpage-renames \ --mandir=${MANPREFIX}/man \ --with-hashed-db \ - --with-pkg-config-libdir=${PREFIX}/libdata/pkgconfig + --with-pkg-config-libdir=${PREFIX}/libdata/pkgconfig \ + ac_cv_sys_long_file_names=yes MAKE_JOBS_UNSAFE= yes OPTIONS_DEFINE= TRACE DEBUG PROFILE EXAMPLES DOCS