Skip to content

Commit

Permalink
Fix Jenkin build failure
Browse files Browse the repository at this point in the history
Summary:

Previously I changed the line `source ./fbcode.gcc471.sh` to `source fbcode.gcc471.sh`. It works in my devbox but failed in some jenkin servers. I revert the previous code to make sure it works well under all circumstances.

Test Plan:

Test in the jenkin server as well as dev box.

Reviewers:

CC:

Task ID: #

Blame Rev:
  • Loading branch information
Kai Liu committed Aug 15, 2013
1 parent 457dcc6 commit 159c19a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build_tools/build_detect_platform
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ fi
# Default to fbcode gcc on internal fb machines
if [ -d /mnt/gvfs/third-party -a -z "$CXX" ]; then
if [ -z "$USE_CLANG" ]; then
source fbcode.gcc471.sh
./source fbcode.gcc471.sh
else
source fbcode.clang31.sh
./source fbcode.clang31.sh
fi
fi

Expand Down

0 comments on commit 159c19a

Please sign in to comment.