svn commit: r448968 - head/mail/fdm

Alexey Dokuchaev danfe at FreeBSD.org
Wed Aug 30 10:33:52 UTC 2017


Author: danfe
Date: Wed Aug 30 10:33:51 2017
New Revision: 448968
URL: https://svnweb.freebsd.org/changeset/ports/448968

Log:
  Attempt to properly fix parallel (-jX) build of `mail/fdm' by adding
  missing dependency of `lex.c' on later-generated `parse.h' (no other
  file wants to include it).
  
  Silence from:	dinoex (since 23 Jun)

Modified:
  head/mail/fdm/Makefile

Modified: head/mail/fdm/Makefile
==============================================================================
--- head/mail/fdm/Makefile	Wed Aug 30 09:01:40 2017	(r448967)
+++ head/mail/fdm/Makefile	Wed Aug 30 10:33:51 2017	(r448968)
@@ -13,8 +13,6 @@ LICENSE=	ISCL
 
 LIB_DEPENDS=	libtdb.so:databases/tdb
 
-MAKE_JOBS_UNSAFE=	yes
-
 USE_GITHUB=	yes
 GH_ACCOUNT=	nicm
 USES=		autoreconf:build ssl
@@ -34,6 +32,7 @@ PCRE_LIB_DEPENDS=libpcre.so:devel/pcre
 
 post-patch:
 	@${REINPLACE_CMD} -e 's|/etc|${PREFIX}/etc|g' ${WRKSRC}/*.[15] ${WRKSRC}/MANUAL
+	@${ECHO_CMD} 'lex.c: parse.h' >> ${WRKSRC}/Makefile.am
 
 pre-configure:
 	@cd ${WRKSRC} && sh autogen.sh


More information about the svn-ports-all mailing list