svn commit: r324742 - in head/security/polarssl: . files

Matthias Andree mandree at FreeBSD.org
Wed Aug 14 17:28:33 UTC 2013


Author: mandree
Date: Wed Aug 14 17:28:32 2013
New Revision: 324742
URL: http://svnweb.freebsd.org/changeset/ports/324742

Log:
  Fix regression from my earlier commit r324675 which caused a
  "make fetch" failure on non-POSIX-compliant SHELL:
  
  1. Replace ${SHELL} by ${SH} so the fetchwrapper.sh gets executed with a
     POSIX-compliant shell (such as /bin/sh)
  
  2. Just because it's meant that way, add an svn:executable=* property
     on files/fetchwrapper.sh.
  
  PR:		ports/181252
  Reported by:	Mike Harding (private email)

Modified:
  head/security/polarssl/Makefile
Directory Properties:
  head/security/polarssl/files/fetchwrapper.sh   (props changed)

Modified: head/security/polarssl/Makefile
==============================================================================
--- head/security/polarssl/Makefile	Wed Aug 14 17:23:35 2013	(r324741)
+++ head/security/polarssl/Makefile	Wed Aug 14 17:28:32 2013	(r324742)
@@ -51,7 +51,7 @@ post-install:
 
 .include <bsd.port.pre.mk>
 
-FETCH_CMD:=	${SHELL} ${FILESDIR}/fetchwrapper.sh \
+FETCH_CMD=	${SH} ${FILESDIR}/fetchwrapper.sh \
 			${URL_SUFFIX} ${FETCH_BINARY} ${FETCH_ARGS}
 
 .if ${ARCH} == "powerpc"


More information about the svn-ports-head mailing list