diff options
author | mandree <mandree@FreeBSD.org> | 2013-08-15 01:28:32 +0800 |
---|---|---|
committer | mandree <mandree@FreeBSD.org> | 2013-08-15 01:28:32 +0800 |
commit | 512706436f138b4e3661cd7e621c4883b4702453 (patch) | |
tree | ca07084fbee68fbf95dc8987cfcaf8b4774de65f /security/polarssl | |
parent | a04b017c5b98484e6df3f7cd4fe0da920e66653f (diff) | |
download | freebsd-ports-gnome-512706436f138b4e3661cd7e621c4883b4702453.tar.gz freebsd-ports-gnome-512706436f138b4e3661cd7e621c4883b4702453.tar.zst freebsd-ports-gnome-512706436f138b4e3661cd7e621c4883b4702453.zip |
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)
Diffstat (limited to 'security/polarssl')
-rw-r--r-- | security/polarssl/Makefile | 2 | ||||
-rwxr-xr-x[-rw-r--r--] | security/polarssl/files/fetchwrapper.sh | 0 |
2 files changed, 1 insertions, 1 deletions
diff --git a/security/polarssl/Makefile b/security/polarssl/Makefile index 5efdd2c715ab..cd97f040ad55 100644 --- a/security/polarssl/Makefile +++ b/security/polarssl/Makefile @@ -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" diff --git a/security/polarssl/files/fetchwrapper.sh b/security/polarssl/files/fetchwrapper.sh index dcbe42ced2b6..dcbe42ced2b6 100644..100755 --- a/security/polarssl/files/fetchwrapper.sh +++ b/security/polarssl/files/fetchwrapper.sh |