Selaa lähdekoodia

Fix joining of DESTDIR and group root

Fix up the path joining logic:

 *  For obvious reasons, we panic if group's root is empty.

 *  DESTDIR can be empty, that's normal for installs such as when MKit
    installs its own dogfood.

 *  Root (which sometimes starts with PREFIX) may or may not start with
    slash; relative root such as that is also OK for installs like MKit
    or TFKit.

 *  Furthermore, DESTDIR may or may not end with slash; we have to address
    that and avoid joining the names.
Alois Mahdal 9 vuotta sitten
vanhempi
commit
da0869db93
1 muutettua tiedostoa jossa 7 lisäystä ja 2 poistoa
  1. 7
    2
      src/include/deploy.sh

+ 7
- 2
src/include/deploy.sh Näytä tiedosto

@@ -69,8 +69,13 @@ get_root() {
69 69
     #
70 70
     local grp="$1"
71 71
     local root=$(ini 1value "roots:$grp")
72
-    test -n "$root" || die "missing in config.ini: roots:$grp"
73
-    echo "$(ini 1value ENV:DESTDIR)$root"
72
+    local destdir=$(ini 1value ENV:DESTDIR)
73
+    destdir=${destdir%/}
74
+    case $destdir:$root in
75
+        *:)     die "missing in config.ini: roots:$grp" ;;
76
+        :*)     echo "$root" ;;
77
+        *:*)    echo "$destdir/$root" ;;
78
+    esac
74 79
 }
75 80
 
76 81
 install() {