]> git.pld-linux.org Git - packages/boomerang.git/blob - boomerang-path.patch
- new
[packages/boomerang.git] / boomerang-path.patch
1 diff -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.054281 seconds and 3 git commands to generate.