Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/auriamg/macdylibbundler.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarianne Gagnon <auria.mg@gmail.com>2015-06-02 02:31:00 +0300
committerMarianne Gagnon <auria.mg@gmail.com>2015-06-02 02:31:00 +0300
commit0d8c73958bc0b76582d4df886c258937fb2c7bc4 (patch)
tree30c86e0b5f1e706fb7461b0276972d9512b658ef /src
parent8eb915a0193832794728748d7eb1c666c49eae08 (diff)
Fix previous commit
Diffstat (limited to 'src')
-rw-r--r--src/DylibBundler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DylibBundler.cpp b/src/DylibBundler.cpp
index 1702a4f..19f9800 100644
--- a/src/DylibBundler.cpp
+++ b/src/DylibBundler.cpp
@@ -94,7 +94,7 @@ void collectDependencies(std::string filename)
if( lines[n].find(".framework") != std::string::npos ) continue; //Ignore frameworks, we can not handle them
addDependency( // trim useless info, keep only library name
- lines[n].substr(1, lines[n]rfind(" (") - 1)
+ lines[n].substr(1, lines[n].rfind(" (") - 1)
);
}
}
@@ -120,7 +120,7 @@ void collectSubDependencies()
if( lines[n].find(".framework") != std::string::npos ) continue; //Ignore frameworks, we can not handle them
addDependency( // trim useless info, keep only library name
- lines[n].substr(1, lines[n]rfind(" (") - 1)
+ lines[n].substr(1, lines[n].rfind(" (") - 1)
);
}//next
}//next