Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 14 Aug 2013 23:51:28 +0000 (UTC)
From:      Matthias Andree <mandree@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r324746 - in branches/RELENG_9_2_0/security/polarssl: . files
Message-ID:  <201308142351.r7ENpSvP028906@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mandree
Date: Wed Aug 14 23:51:28 2013
New Revision: 324746
URL: http://svnweb.freebsd.org/changeset/ports/324746

Log:
  Merge r324724 from head to fix "make fetch" regression.
  
  "make fetch" would fail if on a non-POSIX-compliant SHELL, for instance,
  if launched from csh.
  
  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)
  Approved by:	portmgr (erwin)

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

Modified: branches/RELENG_9_2_0/security/polarssl/Makefile
==============================================================================
--- branches/RELENG_9_2_0/security/polarssl/Makefile	Wed Aug 14 22:52:44 2013	(r324745)
+++ branches/RELENG_9_2_0/security/polarssl/Makefile	Wed Aug 14 23:51:28 2013	(r324746)
@@ -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?201308142351.r7ENpSvP028906>