svn commit: r408318 - head/devel/ncurses

John Marino marino at FreeBSD.org
Sat Feb 6 23:11:41 UTC 2016


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


More information about the svn-ports-all mailing list