svn commit: r569286 - head/devel/bitkeeper

Cy Schubert cy at FreeBSD.org
Sat Mar 27 02:44:56 UTC 2021


Author: cy
Date: Sat Mar 27 02:44:53 2021
New Revision: 569286
URL: https://svnweb.freebsd.org/changeset/ports/569286

Log:
  devel/bitkeeper: Manual port builds may stage incorrectly
  
  Building through poudriere will always stage into
  ${PREFIX}/bitkeeper however when building manually using
  make staging may not always work as expected.

Modified:
  head/devel/bitkeeper/Makefile   (contents, props changed)

Modified: head/devel/bitkeeper/Makefile
==============================================================================
--- head/devel/bitkeeper/Makefile	Sat Mar 27 02:44:47 2021	(r569285)
+++ head/devel/bitkeeper/Makefile	Sat Mar 27 02:44:53 2021	(r569286)
@@ -37,6 +37,10 @@ ALL_TARGET=	p
 do-build:
 	@(cd ${WRKSRC}; ${MAKE_CMD} ${ALL_TARGET})
 
+do-install:
+	@(cd ${WRKSRC}; \
+	${MAKE_CMD} DESTDIR=${STAGEDIR}${PREFIX}/bitkeeper ${INSTALL_TARGET})
+
 post-install:
 	${LN} -s ../bitkeeper/bk ${STAGEDIR}${PREFIX}/bin
 


More information about the svn-ports-head mailing list