The NOPROFILE option has been deprecated in favor of NO_PROFILE, but graphics/gd isn't updated. This causes the Makefile to try to install a profiled library libgd_p.a, but this library doesn't exist and the build/install fails. Fix: Attached patch fixes the issue, renaming NOPROFILE to NO_PROFILE. How-To-Repeat: Build graphics/gd on a clean 10-current system.
Responsible Changed From-To: freebsd-ports-bugs->dinoex Over to maintainer (via the GNATS Auto Assign Tool)
Author: dinoex Date: Sat Jan 26 14:21:23 2013 New Revision: 311011 URL: http://svnweb.freebsd.org/changeset/ports/311011 Log: - fix build for 10-CURRENT PR: 175528 Submitted by: Matthias Andree Modified: head/graphics/gd/files/Makefile.bsd Modified: head/graphics/gd/files/Makefile.bsd ============================================================================== --- head/graphics/gd/files/Makefile.bsd Sat Jan 26 14:20:09 2013 (r311010) +++ head/graphics/gd/files/Makefile.bsd Sat Jan 26 14:21:23 2013 (r311011) @@ -40,7 +40,7 @@ ${PROGS} ${TESTS}: ${SHLIB_NAME} lib${LI install: mkdir -p ${PREFIX}/include - ${MAKE} LIB=${LIB} LIBDIR=${PREFIX}/lib NOPROFILE=true \ + ${MAKE} LIB=${LIB} LIBDIR=${PREFIX}/lib NOPROFILE=true NO_PROFILE=true \ SHLIB_MAJOR=${SHLIB_MAJOR} SHLIB_MINOR=${SHLIB_MINOR} \ -f ${MAKEDIR}/bsd.lib.mk install cd ${.CURDIR} && ${BSD_INSTALL_DATA} ${INCS} ${PREFIX}/include _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Due to regressions on older FreeBSD systems, a diffrent fix was committed, thanks.