diff options
author | danfe <danfe@FreeBSD.org> | 2017-08-30 18:33:51 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2017-08-30 18:33:51 +0800 |
commit | 4e298b04833688c2a736a9b710a27a006f20ff54 (patch) | |
tree | b706466dcfa5413c2cf0b1c71b1946533d959966 /mail | |
parent | 7c116dee59c088bdd00e39ff420bd34bf4dbb049 (diff) | |
download | freebsd-ports-gnome-4e298b04833688c2a736a9b710a27a006f20ff54.tar.gz freebsd-ports-gnome-4e298b04833688c2a736a9b710a27a006f20ff54.tar.zst freebsd-ports-gnome-4e298b04833688c2a736a9b710a27a006f20ff54.zip |
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)
Diffstat (limited to 'mail')
-rw-r--r-- | mail/fdm/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mail/fdm/Makefile b/mail/fdm/Makefile index ef51d63bc16c..68838fad94b1 100644 --- a/mail/fdm/Makefile +++ b/mail/fdm/Makefile @@ -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 |