diff options
author | James E. Housley <jeh@FreeBSD.org> | 2000-10-25 23:54:27 +0000 |
---|---|---|
committer | James E. Housley <jeh@FreeBSD.org> | 2000-10-25 23:54:27 +0000 |
commit | a83b5b293f0eba0a5a87a14548f6fa522ac78c1b (patch) | |
tree | 01a272adce0a48a694ca2b77c645e81b2c5c79b6 /devel/pcre | |
parent | Update: graphics/xine 0.2.2 -> 0.2.3 (diff) |
@${LN} -f ${WRKSRC}/.libs/pgrep ${WRKSRC}/pgrep
in the pre-install target otherwise we get a broken pgrep shell script
installed instead of the binary we really want.
PR: 21508
Submitted by: MAINTAINER
Diffstat (limited to 'devel/pcre')
-rw-r--r-- | devel/pcre/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/devel/pcre/Makefile b/devel/pcre/Makefile index f3bbd7f554af..94ea234ff93e 100644 --- a/devel/pcre/Makefile +++ b/devel/pcre/Makefile @@ -18,4 +18,9 @@ USE_LIBTOOL= yes MAN3= pcre.3 pcreposix.3 MAN1= pgrep.1 +# Otherwise we get a broken pgrep shell script installed +# instead of the binary we really want. +pre-install: + @${LN} -f ${WRKSRC}/.libs/pgrep ${WRKSRC}/pgrep + .include <bsd.port.mk> |