svn commit: r324746 - in branches/RELENG_9_2_0/security/polarssl: . files
Matthias Andree
mandree at FreeBSD.org
Wed Aug 14 23:51:29 UTC 2013
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"
More information about the svn-ports-all
mailing list