21 Nov
2017
21 Nov
'17
4:05 p.m.
On 11/21/17 10:25 AM, Jeremy Audet via aur-general wrote:
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
Thanks for the heads up, yeah, I was being overly verbose/explicit with the commands in the PKGBUILD. I'm making the changes now :)