diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2012-08-29 22:20:19 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2012-08-29 22:20:19 +0000 |
commit | 6212ea8495874949cd4ad9edd6891a6a1e865515 (patch) | |
tree | c1ce7c052afc822b2389e8af66cde3d2c9f69e18 /editors | |
parent | 157b28c67e9b4617c6b9c3e84db6f7257b4ad06f (diff) |
Fix the previous commit to make it really work. See the following upstream
PR for more information about this issue:
https://bugs.freedesktop.org/show_bug.cgi?id=54015
Notes
Notes:
svn path=/head/; revision=303352
Diffstat (limited to 'editors')
-rw-r--r-- | editors/libreoffice/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/libreoffice/Makefile b/editors/libreoffice/Makefile index b5235da7abf1..103a0a5c7433 100644 --- a/editors/libreoffice/Makefile +++ b/editors/libreoffice/Makefile @@ -377,7 +377,7 @@ post-extract: post-patch: @${FIND} ${WRKSRC} -type f -print0 | \ - ${XARGS} -0 ${REINPLACE_CMD} -i '' -e 's#-Wl,-rpath,#-Wl,-z,origin -Wl,-rpath,#g' + ${XARGS} -0 ${REINPLACE_CMD} -i '' -e 's#-Wl,-rpath,#-Wl,-z,origin,-rpath,#g' @${REINPLACE_CMD} -e 's#5.1 5.0#${BDB_VER}#g' \ -e 's,-ldb$$dash$$dbver,-l${BDB_LIB_NAME},g' \ -e 's,"Linux" \&\& test "z$$enable_graphite","FreeBSD" \&\& test "z$$enable_graphite",g' \ |