View | Details | Raw Unified | Return to bug 216442
Collapse All | Expand All

(-)Mk/Scripts/do-fetch.sh (-2 / +2 lines)
Lines 44-54 for _file in "${@}"; do Link Here
44
			fi
44
			fi
45
		done
45
		done
46
	fi
46
	fi
47
	if [ '(' -f "${file}" -o -f "$filebasename" ')' -a "$force_fetch" != "true" ]; then
47
	if [ -f "${file}" -a "$force_fetch" != "true" ]; then
48
		continue
48
		continue
49
	fi
49
	fi
50
	full_file="${dp_DIST_SUBDIR:+${dp_DIST_SUBDIR}/}${file}"
50
	full_file="${dp_DIST_SUBDIR:+${dp_DIST_SUBDIR}/}${file}"
51
	if [ -L "$file" -o -L "$filebasename" ]; then
51
	if [ -L "$file" ]; then
52
		${dp_ECHO_MSG} "=> ${dp_DISTDIR}/$file is a broken symlink."
52
		${dp_ECHO_MSG} "=> ${dp_DISTDIR}/$file is a broken symlink."
53
		${dp_ECHO_MSG} "=> Perhaps a filesystem (most likely a CD) isn't mounted?"
53
		${dp_ECHO_MSG} "=> Perhaps a filesystem (most likely a CD) isn't mounted?"
54
		${dp_ECHO_MSG} "=> Please correct this problem and try again."
54
		${dp_ECHO_MSG} "=> Please correct this problem and try again."

Return to bug 216442