Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 6969 | Differences between
and this patch

Collapse All | Expand All

(-)qpkg.orig (-4 / +4 lines)
Lines 408-423 Link Here
408
			name=${line[1]}
408
			name=${line[1]}
409
			
409
			
410
			missing=
410
			missing=
411
			[ ! -e ${name} ] && missing=1
411
			[ ! -e "${name}" ] && missing=1
412
			
412
			
413
			# colorize name and compute mtime/md5
413
			# colorize name and compute mtime/md5
414
			if [ "obj" = ${line[0]} ]; then
414
			if [ "obj" = ${line[0]} ]; then
415
				[ -e ${name} ] && {
415
				[ -e "${name}" ] && {
416
					[ "${tcheck}" ] && mtime=${line[3]}
416
					[ "${tcheck}" ] && mtime=${line[3]}
417
					[ "${tcheck}" ] && _mtime=`date -r ${name} +%s`
417
					[ "${tcheck}" ] && _mtime=`date -r "${name}" +%s`
418
418
419
					[ "${mcheck}" ] && md5=${line[2]}
419
					[ "${mcheck}" ] && md5=${line[2]}
420
					[ "${mcheck}" ] && _md5=`md5sum ${name}|cut -f1 -d" "`
420
					[ "${mcheck}" ] && _md5=`md5sum "${name}"|cut -f1 -d" "`
421
				}
421
				}
422
422
423
				name=${BR}${name}${NO}
423
				name=${BR}${name}${NO}

Return to bug 6969