Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 14 Aug 2013 17:28:33 +0000 (UTC)
From:      Matthias Andree <mandree@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r324742 - in head/security/polarssl: . files
Message-ID:  <201308141728.r7EHSXm7054047@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308141728.r7EHSXm7054047>