fixupPhase: Fix making the outputs writable
This commit is contained in:
parent
11dc9036d0
commit
2db867eec9
@ -696,7 +696,7 @@ installPhase() {
|
|||||||
fixupPhase() {
|
fixupPhase() {
|
||||||
# Make sure everything is writable so "strip" et al. work.
|
# Make sure everything is writable so "strip" et al. work.
|
||||||
for output in $outputs; do
|
for output in $outputs; do
|
||||||
if [ -e "$output" ]; then chmod -R u+w "$output"; fi
|
if [ -e "${!output}" ]; then chmod -R u+w "${!output}"; fi
|
||||||
done
|
done
|
||||||
|
|
||||||
runHook preFixup
|
runHook preFixup
|
||||||
|
Loading…
x
Reference in New Issue
Block a user