Clang appears to give a warning about -I . unused, but unfortunately with -Werror that causes an error; cc: error: argument unused during compilation: '-I .' Fix: Strip -Werror from Makefile; it's unnecessary for users anyway. -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean.--WGmCqelaxopD3qZt7qB3UBN8ZjGLHKNzXU9p27MWphWNM1tI Content-Type: text/plain; name="patch.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch.txt" Index: Makefile =================================================================== --- Makefile (revision 316262) +++ Makefile (working copy) @@ -29,7 +29,7 @@ MAKE_JOBS_SAFE= yes post-patch: - ${REINPLACE_CMD} -e 's,-ldl,,; s,-O3,${CFLAGS},; \ + ${REINPLACE_CMD} -e 's,-ldl,,; s,-O3,${CFLAGS},; s,-Werror ,,; \ s,^CC,#CC,;s,^CPP,#CPP,;s,CPP,CXX,; s,^CXXFLAGS.*=,CXXFLAGS+=,' \ ${WRKSRC}/src/makefile
Responsible Changed From-To: freebsd-ports-bugs->arved Over to maintainer (via the GNATS Auto Assign Tool)
Hi Chris, Please commit!
Author: crees Date: Tue Apr 23 16:41:46 2013 New Revision: 316371 URL: http://svnweb.freebsd.org/changeset/ports/316371 Log: Unbreak on head (probably ccache too) PR: ports/178058 Approved by: arved (maintainer) Modified: head/audio/ladspa/Makefile Modified: head/audio/ladspa/Makefile ============================================================================== --- head/audio/ladspa/Makefile Tue Apr 23 16:41:07 2013 (r316370) +++ head/audio/ladspa/Makefile Tue Apr 23 16:41:46 2013 (r316371) @@ -29,7 +29,7 @@ BUILD_WRKSRC= ${WRKSRC}/src MAKE_JOBS_SAFE= yes post-patch: - ${REINPLACE_CMD} -e 's,-ldl,,; s,-O3,${CFLAGS},; \ + ${REINPLACE_CMD} -e 's,-ldl,,; s,-O3,${CFLAGS},; s,-Werror ,,; \ s,^CC,#CC,;s,^CPP,#CPP,;s,CPP,CXX,; s,^CXXFLAGS.*=,CXXFLAGS+=,' \ ${WRKSRC}/src/makefile _______________________________________________ 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 Thanks for the quick approval