From 8c9411c6370fcbf8e4e8c85b2daeb654c26409ed Mon Sep 17 00:00:00 2001 From: Mayank Agarwal Date: Tue, 14 May 2013 16:08:03 -0700 Subject: [PATCH] Modify build_detect_platform to run fbcode.*.* irrespective of $PATH Summary: This caused crash when the jenkins machine changed because the PATH variable is different. Test Plan: make Reviewers: dhruba, sheki Reviewed By: sheki CC: leveldb Differential Revision: https://reviews.facebook.net/D10803 --- build_detect_platform | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_detect_platform b/build_detect_platform index db6e13ba3..c25b17583 100755 --- a/build_detect_platform +++ b/build_detect_platform @@ -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