svn commit: r365140 - head/irc/bitlbee

Bryan Drewery bdrewery at FreeBSD.org
Sat Aug 16 21:26:42 UTC 2014


Author: bdrewery
Date: Sat Aug 16 21:26:41 2014
New Revision: 365140
URL: http://svnweb.freebsd.org/changeset/ports/365140
QAT: https://qat.redports.org/buildarchive/r365140/

Log:
  - Fix WITH_SSP_PORTS build.
    3.2.2 set the default EFLAGS to '-lm' which resulted in our LDFLAGS
    being added without a preceding space. Now just add our LDFLAGS on
    the end.

Modified:
  head/irc/bitlbee/Makefile

Modified: head/irc/bitlbee/Makefile
==============================================================================
--- head/irc/bitlbee/Makefile	Sat Aug 16 21:21:13 2014	(r365139)
+++ head/irc/bitlbee/Makefile	Sat Aug 16 21:26:41 2014	(r365140)
@@ -117,7 +117,7 @@ CONFIGURE_ARGS+=--purple=0
 
 post-patch:
 	@${REINPLACE_CMD} \
-		-e "s|^EFLAGS=|EFLAGS=${LDFLAGS}|" \
+		-e "s|^\(EFLAGS=.*\)|\1 ${LDFLAGS}|" \
 		${WRKSRC}/configure
 
 	@${REINPLACE_CMD} \


More information about the svn-ports-head mailing list