fixupPhase: Handle the case where "outputs" is not set
This commit is contained in:
parent
39ca48fb9a
commit
f851584ea6
1 changed files with 1 additions and 1 deletions
|
@ -737,7 +737,7 @@ fixupPhase() {
|
|||
|
||||
# Apply fixup to each output.
|
||||
local output
|
||||
for output in $outputs; do
|
||||
for output in ${outputs:-out}; do
|
||||
fixupPrefix ${!output}
|
||||
done
|
||||
|
||||
|
|
Loading…
Reference in a new issue