4 if test x
"$PKGCOMMAND" = x
; then
5 echo "Please execute deb-attempt-install-dependencies.sh or"
6 echo "rpm-attempt-install-dependencies.sh after configuring."
10 if test x
"$packages" != x
; then
11 for PKGS
in $packages; do
12 for P
in `echo $PKGS | sed "s/\\// /g"`; do
15 if test $success -eq 0; then break; fi
17 if test $success -gt 0; then
18 failed
="$failed $PKGS"
20 succeded
="$succeded $P"
26 for P
in $succeded; do
32 if test x
"$failed" != x
; then
33 echo "Some packages might not have been installed because they are not in your repositories. This is normal. If needed, please install them manually. If packages exist, but were not detected, please tell us so we can add them to the list. For instructions on how to proceed from here, please run configure again."
35 echo "All dependencies are satisfied -- You should now be able to run configure successfully"
38 echo "All dependencies are satisfied -- You should now be able to run configure successfully"