diff options
author | jhb <jhb@FreeBSD.org> | 2014-04-25 00:23:16 +0800 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2014-04-25 00:23:16 +0800 |
commit | 997629a10a237cbb5478c7876e4bba82cc74a136 (patch) | |
tree | 02062456027fa91e05bf26405ed6c6ae8528642f | |
parent | 4e4fbe1f07b85f1802a3903688c76bd957acb81c (diff) | |
download | freebsd-ports-gnome-997629a10a237cbb5478c7876e4bba82cc74a136.tar.gz freebsd-ports-gnome-997629a10a237cbb5478c7876e4bba82cc74a136.tar.zst freebsd-ports-gnome-997629a10a237cbb5478c7876e4bba82cc74a136.zip |
Correct the target of the symlink used when linking binaries.
PR: ports/188471
Reviewed by: bdrewery
-rw-r--r-- | devel/ptmalloc2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/ptmalloc2/Makefile b/devel/ptmalloc2/Makefile index 6b03d8f31694..3c0dbeb694e6 100644 --- a/devel/ptmalloc2/Makefile +++ b/devel/ptmalloc2/Makefile @@ -3,7 +3,7 @@ PORTNAME= ptmalloc2 PORTVERSION= 20060605 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://www.malloc.de/malloc/ DISTNAME= ${PORTNAME}-current @@ -24,7 +24,7 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/malloc.h ${STAGEDIR}${PREFIX}/${INCDIR}/ ${INSTALL_DATA} ${WRKSRC}/libmalloc.a ${STAGEDIR}${PREFIX}/lib/libptmalloc2.a ${INSTALL_DATA} ${WRKSRC}/malloc.so ${STAGEDIR}${PREFIX}/lib/libptmalloc2.so.0 - ${LN} -s libptmalloc.so.0 ${STAGEDIR}${PREFIX}/lib/libptmalloc2.so + ${LN} -s libptmalloc2.so.0 ${STAGEDIR}${PREFIX}/lib/libptmalloc2.so regression-test: build @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} check |