diff options
author | mat <mat@FreeBSD.org> | 2016-06-19 19:25:29 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-06-19 19:25:29 +0800 |
commit | 44bb4707583cbd12af5d90026bb045ac8d948564 (patch) | |
tree | 84c7cf412c9b595212c74612c2651e087a7a7203 /games | |
parent | f3b7bc909dad478923eeefb92fdf5d952ed43b7b (diff) | |
download | freebsd-ports-graphics-44bb4707583cbd12af5d90026bb045ac8d948564.tar.gz freebsd-ports-graphics-44bb4707583cbd12af5d90026bb045ac8d948564.tar.zst freebsd-ports-graphics-44bb4707583cbd12af5d90026bb045ac8d948564.zip |
Remove unnecessary evals that do-fetch was using.
Turns out that env(1) knows how to parse a properly quoted string
using -S "string", it makes the double eval used for the fetch
command to be unnecessary.
This is because running:
eval "foo $(escape $bar)"
is silly when this works:
foo $bar
So remove escaping and quoting, and sillyness.
PR: 210198
Submitted by: mat
Exp-run by: antoine
Sponsored by: The FreeBSD Foundation, Absolight
Differential Revision: https://reviews.freebsd.org/D6779
Diffstat (limited to 'games')
-rw-r--r-- | games/narcissu2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/narcissu2/Makefile b/games/narcissu2/Makefile index 794f0fd16d1..9b5a2dd5aef 100644 --- a/games/narcissu2/Makefile +++ b/games/narcissu2/Makefile @@ -5,7 +5,7 @@ PORTVERSION= 1.1 CATEGORIES= games MASTER_SITES= http://www.neechin.net/file_download/22/:game \ http://www.neechin.net/file_download/27/:script \ - https://aur.archlinux.org/cgit/aur.git/plain/${PORTNAME}-en.png?h=${PORTNAME}-en\&id=9768eea\&foo=/:icon + https://aur.archlinux.org/cgit/aur.git/plain/${PORTNAME}-en.png?h=${PORTNAME}-en&id=9768eea&foo=/:icon DISTFILES= [Denpa]_Narcissu_2_Eng_[unix].tar.bz2.link:game \ Narcissu_2_Eng_v${PORTVERSION}_script_[All_platforms].zip:script \ ${PORTNAME}-en.png:icon |