diff options
author | johans <johans@FreeBSD.org> | 2014-05-05 23:51:04 +0800 |
---|---|---|
committer | johans <johans@FreeBSD.org> | 2014-05-05 23:51:04 +0800 |
commit | c7c57f6ff3ff10dcbd4c447d7f21425e9de38302 (patch) | |
tree | d166f7cca2e4eb6c99aefcf89423413167b39ec2 /textproc | |
parent | c4227a02932c0ab10816583ac965d7b303cfd7b5 (diff) | |
download | freebsd-ports-gnome-c7c57f6ff3ff10dcbd4c447d7f21425e9de38302.tar.gz freebsd-ports-gnome-c7c57f6ff3ff10dcbd4c447d7f21425e9de38302.tar.zst freebsd-ports-gnome-c7c57f6ff3ff10dcbd4c447d7f21425e9de38302.zip |
Make sure static library libfl_pic.a contains position independent code.
This fixes compilation of ports that insist on linking this library
into a shared object file (specifically devel/libmatheval).
While here, remove unused ranlib patch lines.
PR: ports/189323
Submitted by: tijl
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/flex/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/textproc/flex/Makefile b/textproc/flex/Makefile index ac6b9210d20b..e11d513720a4 100644 --- a/textproc/flex/Makefile +++ b/textproc/flex/Makefile @@ -2,6 +2,7 @@ PORTNAME= flex PORTVERSION= 2.5.39 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= SF/${PORTNAME} @@ -16,7 +17,7 @@ USES= bison gmake tar:bzip2 GNU_CONFIGURE= yes # install flex header to its own dir to avoid conflict with system flex. CONFIGURE_ARGS= --includedir=${PREFIX}/include/flex --disable-shared -CONFIGURE_ENV= M4=${LOCALBASE}/bin/gm4 +CONFIGURE_ENV= M4=${LOCALBASE}/bin/gm4 MAKEINFO="makeinfo --no-split" INSTALL_TARGET= install-strip INFO= flex @@ -28,11 +29,8 @@ NLS_CONFIGURE_ENABLE= nls post-patch: .SILENT ${REINPLACE_CMD} -Ee 's/tests//' \ - -e 's/^([[:space:]]*)\$$\(RANLIB\) ([^ ;]*)/\1chmod u+w \2;&/' \ - -e '/echo.*RANLIB/,+1d' \ + -e '/mode=compile ..CC/s/\\$$/-fPIC -DPIC &/' \ ${WRKSRC}/Makefile.in - ${REINPLACE_CMD} -e 's/@MAKEINFO@/& --no-split/g' \ - ${WRKSRC}/doc/Makefile.in ${RM} -f ${WRKSRC}/doc/*.info* .include <bsd.port.mk> |