From 8ae65954888f204bf2186f6d72cec5a01dbb477d Mon Sep 17 00:00:00 2001 From: mat Date: Sat, 28 Jan 2017 10:52:20 +0000 Subject: Remove some code added in r858[1], still don't know what it was supposed to be doing at the time. When fetching, the code was looking for a distfile in either its DIST_SUBDIR or the main DISTDIR, which was ok. Until a port (devel/cargo) moves one of its distfile (cargo-nightly-x86_64-unknown-freebsd.tar.gz) into a subdirectory. do-fetch would see the distfile in DISTDIR and say, ok, it's there, and checksum would not see it in its subdirectory and fail. 1: phabricator's blame mode is really, really, great to unroll history. PR: 216442 Submitted by: mat Reported by: Bob Willcox, dhw (on ports) Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D9318 --- Mk/Scripts/do-fetch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Mk') diff --git a/Mk/Scripts/do-fetch.sh b/Mk/Scripts/do-fetch.sh index 879120e5cb07..6b646c96a83c 100644 --- a/Mk/Scripts/do-fetch.sh +++ b/Mk/Scripts/do-fetch.sh @@ -44,11 +44,11 @@ for _file in "${@}"; do fi done fi - if [ '(' -f "${file}" -o -f "$filebasename" ')' -a "$force_fetch" != "true" ]; then + if [ -f "${file}" -a "$force_fetch" != "true" ]; then continue fi full_file="${dp_DIST_SUBDIR:+${dp_DIST_SUBDIR}/}${file}" - if [ -L "$file" -o -L "$filebasename" ]; then + if [ -L "$file" ]; then ${dp_ECHO_MSG} "=> ${dp_DISTDIR}/$file is a broken symlink." ${dp_ECHO_MSG} "=> Perhaps a filesystem (most likely a CD) isn't mounted?" ${dp_ECHO_MSG} "=> Please correct this problem and try again." -- cgit ectron4/files/bl-1.2.3'>dependabot/npm_and_yarn/devel/electron4/files/bl-1.2.3 FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/editors/aee
Commit message (Expand)AuthorAgeFilesLines
* editors/aee: document ncurses rqmt (USES+=ncurses), respect LDFLAGSmarino2016-02-062-3/+14
* - Update to 2.2.21amdmi32015-10-16