Date: Fri, 11 Apr 2014 19:30:56 GMT From: John Baldwin <jhb@FreeBSD.org> To: freebsd-gnats-submit@FreeBSD.org Subject: ports/188471: [PATCH] devel/ptmalloc2 Correct libptmalloc2.so symlink target Message-ID: <201404111930.s3BJUuvh095728@cgiserv.freebsd.org> Resent-Message-ID: <201404111940.s3BJe0mg092304@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 188471 >Category: ports >Synopsis: [PATCH] devel/ptmalloc2 Correct libptmalloc2.so symlink target >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Apr 11 19:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: John Baldwin >Release: >Organization: >Environment: >Description: The existing ptmalloc2 port creates a libptmalloc2.so symlink but points it at libptmalloc.so.0 instead of libptmalloc2.so.0. >How-To-Repeat: >Fix: Index: devel/ptmalloc2/Makefile =================================================================== --- Makefile (revision 265690) +++ Makefile (working copy) @@ -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 >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404111930.s3BJUuvh095728>