Bug 188471 - [PATCH] devel/ptmalloc2 Correct libptmalloc2.so symlink target
Summary: [PATCH] devel/ptmalloc2 Correct libptmalloc2.so symlink target
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: John Baldwin
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-04-11 20:40 UTC by John Baldwin
Modified: 2014-04-24 17:54 UTC (History)
0 users

See Also:


Attachments
file.diff (638 bytes, patch)
2014-04-11 20:40 UTC, John Baldwin
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description John Baldwin freebsd_committer freebsd_triage 2014-04-11 20:40:00 UTC
The existing ptmalloc2 port creates a libptmalloc2.so symlink but points it at libptmalloc.so.0 instead of libptmalloc2.so.0.
Comment 1 Bryan Drewery freebsd_committer freebsd_triage 2014-04-24 17:19:51 UTC
Responsible Changed
From-To: freebsd-ports-bugs->jhb

approved, and bump portrevision
Comment 2 dfilter service freebsd_committer freebsd_triage 2014-04-24 17:23:20 UTC
Author: jhb (src,doc committer)
Date: Thu Apr 24 16:23:16 2014
New Revision: 352015
URL: http://svnweb.freebsd.org/changeset/ports/352015
QAT: https://qat.redports.org/buildarchive/r352015/

Log:
  Correct the target of the symlink used when linking binaries.
  
  PR:		ports/188471
  Reviewed by:	bdrewery

Modified:
  head/devel/ptmalloc2/Makefile

Modified: head/devel/ptmalloc2/Makefile
==============================================================================
--- head/devel/ptmalloc2/Makefile	Thu Apr 24 16:20:30 2014	(r352014)
+++ head/devel/ptmalloc2/Makefile	Thu Apr 24 16:23:16 2014	(r352015)
@@ -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
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 John Baldwin freebsd_committer freebsd_triage 2014-04-24 17:54:21 UTC
State Changed
From-To: open->closed

Committed.