]> git.pld-linux.org Git - packages/boomerang.git/blame - boomerang-path.patch
- new
[packages/boomerang.git] / boomerang-path.patch
CommitLineData
6ff9ccf9
AM
1diff -urN boomerang.org/boomerang.cpp boomerang/boomerang.cpp
2--- boomerang.org/boomerang.cpp 2004-07-09 00:22:50.488941368 +0200
3+++ boomerang/boomerang.cpp 2004-07-09 00:37:52.418827184 +0200
4@@ -212,20 +212,7 @@
5 int Boomerang::commandLine(int argc, const char **argv)
6 {
7 if (argc < 2) usage();
8- progPath = argv[0];
9- // Chop off after the last slash
10- size_t j = progPath.rfind("/");
11- if (j == (size_t)-1)
12- j = progPath.rfind("\\");
13- if (j != (size_t)-1)
14- {
15- // Do the chop; keep the trailing slash
16- progPath = progPath.substr(0, j+1);
17- }
18- else {
19- std::cerr << "? No slash in argv[0]!" << std::endl;
20- return 1;
21- }
22+ progPath = BOOMDIR + "/";
23 outputPath = "./";
24
25 // Parse switches on command line
This page took 0.034429 seconds and 4 git commands to generate.