> ttf-google-fonts-git:
> - `install -dm755 ...; install -Dm644 ...;` is kind of like sprinkling
>   your code with `sleep 1`

(I think) I understand what you mean, but Andrew might not. To put a finer
point on it, `install -dm755` is unnecessary, because install's `-D` flag
creates directories anyway. For example, this:

    install -dm755 "$pkg_license_path"
    install -Dm644 "$src_license_path" "$pkg_license_path"/OFL.txt

Could be replaced with this:

    install -Dm644 "$src_license_path" "$pkg_license_path"/OFL.txt

Reply via email to