svn commit: r406512 - head/www/serf

Olli Hauer ohauer at FreeBSD.org
Sun Jan 17 15:01:35 UTC 2016


Author: ohauer
Date: Sun Jan 17 15:01:34 2016
New Revision: 406512
URL: https://svnweb.freebsd.org/changeset/ports/406512

Log:
  - fix typo in do-install s/SENTENV/SETENV/
  
    Until now ${SETENV} is empty so the fix does not
    affect the result. (no MFH)
  
  Submitted by:	John Hein
  Approved by:	lev@ (implicit)

Modified:
  head/www/serf/Makefile

Modified: head/www/serf/Makefile
==============================================================================
--- head/www/serf/Makefile	Sun Jan 17 14:53:17 2016	(r406511)
+++ head/www/serf/Makefile	Sun Jan 17 15:01:34 2016	(r406512)
@@ -39,7 +39,7 @@ do-build:
 	@(cd ${WRKSRC} && ${SETENV} ${MAKE_CMD} ${SCONS_ARGS})
 
 do-install:
-	@(cd ${WRKSRC} && ${SENTENV} ${MAKE_CMD} ${SCONS_ARGS} ${INSTALL_TARGET})
+	@(cd ${WRKSRC} && ${SETENV} ${MAKE_CMD} ${SCONS_ARGS} ${INSTALL_TARGET})
 
 post-patch:
 	@${REINPLACE_CMD} -E \


More information about the svn-ports-head mailing list