summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authoraxis <qt-info@nokia.com>2011-04-01 16:20:02 +0200
committeraxis <qt-info@nokia.com>2011-04-01 16:24:07 +0200
commit3e48a64a37c87c6ac1ef30e0528bd6b4d1c6939a (patch)
tree6591cb21d5dfc624c7060f32bc59bbcd5286c7a4 /bin
parent151e48fef2a74a7d153a5a8eaff1088a4b1a9043 (diff)
Added some more error handling to the elf2e32_qtwrapper.
RevBy: Liang Qi
Diffstat (limited to 'bin')
-rwxr-xr-xbin/elf2e32_qtwrapper.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/elf2e32_qtwrapper.pl b/bin/elf2e32_qtwrapper.pl
index 02f4f0d7eb..d44b2da553 100755
--- a/bin/elf2e32_qtwrapper.pl
+++ b/bin/elf2e32_qtwrapper.pl
@@ -125,7 +125,7 @@ while (1) {
}
open($newDefFile, "< $defoutput[1]") or die("Could not open $defoutput[1]");
open($tmpDefFile, "> $defoutput[1].tmp") or die("Could not open $defoutput[1].tmp");
- print($tmpDefFile "EXPORTS\n");
+ print($tmpDefFile "EXPORTS\n") or die("Could not write to temporary DEF file: $!");
$fixupFile = "$defoutput[1].tmp";
while (1) {
my $origDefLine;
@@ -210,9 +210,9 @@ while (1) {
# Auto-absent symbols.
$extraData .= " ABSENT";
}
- print($tmpDefFile "\t$sym \@ $ordinal $extraData\n");
+ print($tmpDefFile "\t$sym \@ $ordinal $extraData\n") or die("Could not write to temporary DEF file: $!");
}
- print($tmpDefFile "\n");
+ print($tmpDefFile "\n") or die("Could not write to temporary DEF file: $!");
close($origDefFile) if ($definput[1]);
close($newDefFile);
close($tmpDefFile);
@@ -260,6 +260,6 @@ if ($buildingLibrary) {
}
if ($differenceFound) {
- copy($tmpdso[1], $dso[1]);
+ copy($tmpdso[1], $dso[1]) or die("Could not copy $tmpdso[1] to $dso[1]: $!");
}
}