Skip to content

Commit

Permalink
Adjust relative paths to match git rewritten history.
Browse files Browse the repository at this point in the history
  • Loading branch information
vprus committed Dec 14, 2013
1 parent ca0f733 commit 5d8dd4c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion boost-build.jam
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)


boost-build kernel ;
boost-build src/kernel ;
2 changes: 1 addition & 1 deletion example/boost-build.jam
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)


boost-build ../kernel ;
boost-build ../src/kernel ;
4 changes: 2 additions & 2 deletions test/BoostBuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,8 +272,8 @@ def __init__(self, arguments=None, executable="bjam",

# Find where jam_src is located. Try for the debug version if it is
# lying around.
dirs = [os.path.join("..", "engine", jam_build_dir + ".debug"),
os.path.join("..", "engine", jam_build_dir)]
dirs = [os.path.join("..", "src", "engine", jam_build_dir + ".debug"),
os.path.join("..", "src", "engine", jam_build_dir)]
for d in dirs:
if os.path.exists(d):
jam_build_dir = d
Expand Down

0 comments on commit 5d8dd4c

Please sign in to comment.