Handle blank dependency line.
authorRalph Ronnquist <rrq@rrq.au>
Tue, 17 Sep 2024 05:11:13 +0000 (15:11 +1000)
committerRalph Ronnquist <rrq@rrq.au>
Tue, 17 Sep 2024 05:11:13 +0000 (15:11 +1000)
build-installer-functions.sh

index a1640e9a7d79b685f17d6ac2ef0be27ef24dcbcd..e94270e09a1272c8674a05b500f6fa639f53e51b 100644 (file)
@@ -69,7 +69,7 @@ missing_depends() {
     local D
     REC=T ALLDEP= show_depends $1 | \
        while read D ; do
-           check_depends ${PROVIDER["$D"]}
+           [ -z "$D" ] || check_depends ${PROVIDER["$D"]}
        done
 }