diff options
author | axis <qt-info@nokia.com> | 2011-04-04 09:13:17 +0200 |
---|---|---|
committer | axis <qt-info@nokia.com> | 2011-04-04 09:54:57 +0200 |
commit | f7c7232208a3680a81615bfc697548e9ad7ffa02 (patch) | |
tree | bcd52e70cd3987558da027aef9f90a06ed3481ea | |
parent | 3e48a64a37c87c6ac1ef30e0528bd6b4d1c6939a (diff) | |
download | qt4-tools-f7c7232208a3680a81615bfc697548e9ad7ffa02.tar.gz |
Fixed detection of internal errors in the elf2e32_qtwrapper script.
Reviewed-by: Trust me
-rwxr-xr-x | bin/elf2e32_qtwrapper.pl | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/bin/elf2e32_qtwrapper.pl b/bin/elf2e32_qtwrapper.pl index d44b2da553..6675012678 100755 --- a/bin/elf2e32_qtwrapper.pl +++ b/bin/elf2e32_qtwrapper.pl @@ -219,14 +219,12 @@ while (1) { $definput[1] = "$defoutput[1].tmp"; - if (!$foundBrokenSymbols || $errors) { - last; - } - - print("Rerunning elf2e32 due to DEF file / ELF file mismatch\n"); - } else { + } + if (!$foundBrokenSymbols || $errors) { last; } + + print("Rerunning elf2e32 due to DEF file / ELF file mismatch\n"); }; if ($fixupFile) { |