svn commit: r395244 - head/security/ssh_askpass_gtk2

Dmitry Marakasov amdmi3 at FreeBSD.org
Tue Aug 25 11:34:48 UTC 2015


Author: amdmi3
Date: Tue Aug 25 11:34:47 2015
New Revision: 395244
URL: https://svnweb.freebsd.org/changeset/ports/395244

Log:
  - Fix build when CC contains slashes
  
  Approved by:	portmgr blanket

Modified:
  head/security/ssh_askpass_gtk2/Makefile

Modified: head/security/ssh_askpass_gtk2/Makefile
==============================================================================
--- head/security/ssh_askpass_gtk2/Makefile	Tue Aug 25 11:32:55 2015	(r395243)
+++ head/security/ssh_askpass_gtk2/Makefile	Tue Aug 25 11:34:47 2015	(r395244)
@@ -21,7 +21,7 @@ PLIST_FILES=	bin/ssh-askpass-fullscreen
 
 post-patch:
 	${REINPLACE_CMD} -e "s,gcc,${CC}," \
-		-e "/${CC}/s,$$, -lX11," ${WRKSRC}/Makefile
+		-e "\|${CC}|s,$$, -lX11," ${WRKSRC}/Makefile
 
 do-install:
 	cd ${WRKSRC};\


More information about the svn-ports-all mailing list