summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorQt Continuous Integration System <qt-info@nokia.com>2010-11-04 23:27:39 +0100
committerQt Continuous Integration System <qt-info@nokia.com>2010-11-04 23:27:39 +0100
commitaba9a891da354a1fbbadbb3a70d90a66f47d3f1d (patch)
tree82f803221186b744356546f7bad862b8b21c41b0 /bin
parenta08d09937db437397cc1ecd6aca104a9370d4aa6 (diff)
parent2c8f8c8553d11dc31e0c8b8d5eb39efefd8cfc21 (diff)
downloadqt4-tools-aba9a891da354a1fbbadbb3a70d90a66f47d3f1d.tar.gz
Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-s60-public into master-integration
* 'master' of scm.dev.nokia.troll.no:qt/qt-s60-public: Fixed elf2e32_qtwrapper when not using def files.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/elf2e32_qtwrapper.pl30
1 files changed, 17 insertions, 13 deletions
diff --git a/bin/elf2e32_qtwrapper.pl b/bin/elf2e32_qtwrapper.pl
index c51c409a16..4eeb09809b 100755
--- a/bin/elf2e32_qtwrapper.pl
+++ b/bin/elf2e32_qtwrapper.pl
@@ -80,7 +80,9 @@ while (1) {
my $newDefFile;
my $origDefFile;
my $savedNewDefFileLine = "";
- open($origDefFile, "< $definput[1]") or die("Could not open $definput[1]");
+ if ($definput[1]) {
+ open($origDefFile, "< $definput[1]") or die("Could not open $definput[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");
@@ -98,19 +100,21 @@ while (1) {
my $sym;
my $ordinal;
my $extraData;
- # Read from original def file, and skip non-symbol lines
- while (1) {
- $origDefLine = <$origDefFile>;
- if (defined($origDefLine)) {
- $origDefLine =~ s/[\n\r]//;
- if ($origDefLine =~ /([a-z0-9_]+) +\@ ([0-9]+) (.*)/i) {
- $origSym = $1;
- $origOrdinal = $2;
- $origExtraData = $3;
+ if ($definput[1]) {
+ # Read from original def file, and skip non-symbol lines
+ while (1) {
+ $origDefLine = <$origDefFile>;
+ if (defined($origDefLine)) {
+ $origDefLine =~ s/[\n\r]//;
+ if ($origDefLine =~ /([a-z0-9_]+) +\@ ([0-9]+) (.*)/i) {
+ $origSym = $1;
+ $origOrdinal = $2;
+ $origExtraData = $3;
+ last;
+ }
+ } else {
last;
}
- } else {
- last;
}
}
@@ -169,7 +173,7 @@ while (1) {
print($tmpDefFile "\t$sym \@ $ordinal $extraData\n");
}
print($tmpDefFile "\n");
- close($origDefFile);
+ close($origDefFile) if ($definput[1]);
close($newDefFile);
close($tmpDefFile);