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

Collapse All | Expand All

(-)any2dvdorig (-3 / +3 lines)
Lines 232-239 Link Here
232
return 0
232
return 0
233
fi
233
fi
234
done
234
done
235
errmsg Error: "Program '"$1"' is missing, please install it first ->  "${TOOLURL["$ARRAY"]}""
235
errmsg Error: "Program '"$1"' is missing, please install it first ->  "${TOOLURL[$ARRAY]}""
236
echo -e "	${TOOLMSG["$ARRAY"]}"
236
echo -e "	${TOOLMSG[$ARRAY]}"
237
return 1
237
return 1
238
}
238
}
239
239
Lines 241-247 Link Here
241
ARRAY_NUM="${#TOOLKIT[@]}"
241
ARRAY_NUM="${#TOOLKIT[@]}"
242
ARRAY="1"
242
ARRAY="1"
243
while [ "$ARRAY" -le "$ARRAY_NUM" ]; do
243
while [ "$ARRAY" -le "$ARRAY_NUM" ]; do
244
testprog ${TOOLKIT["$ARRAY"]} || exit 0;
244
testprog ${TOOLKIT[$ARRAY]} || exit 0;
245
let ARRAY=$ARRAY+1
245
let ARRAY=$ARRAY+1
246
done
246
done
247
}
247
}
(-)any2voborig (-3 / +3 lines)
Lines 238-245 Link Here
238
			return 0
238
			return 0
239
		fi
239
		fi
240
	done
240
	done
241
	errmsg Error: "Program '"$1"' is missing, please install it first ->  "${TOOLURL["$ARRAY"]}""
241
	errmsg Error: "Program '"$1"' is missing, please install it first ->  "${TOOLURL[$ARRAY]}""
242
	echo -e "	${TOOLMSG["$ARRAY"]}"
242
	echo -e "	${TOOLMSG[$ARRAY]}"
243
	return 1
243
	return 1
244
}
244
}
245
245
Lines 247-253 Link Here
247
	ARRAY_NUM="${#TOOLKIT[@]}"
247
	ARRAY_NUM="${#TOOLKIT[@]}"
248
	ARRAY="1"
248
	ARRAY="1"
249
	while [ "$ARRAY" -le "$ARRAY_NUM" ]; do
249
	while [ "$ARRAY" -le "$ARRAY_NUM" ]; do
250
		testprog ${TOOLKIT["$ARRAY"]} || exit 0;
250
		testprog ${TOOLKIT[$ARRAY]} || exit 0;
251
		let ARRAY=$ARRAY+1
251
		let ARRAY=$ARRAY+1
252
	done
252
	done
253
	TOOLMSG=([1]=)	# Reset
253
	TOOLMSG=([1]=)	# Reset

Return to bug 126994