From f3dea8c13c97247ab374a3ac176a19decec33033 Mon Sep 17 00:00:00 2001 From: Kai Liu Date: Thu, 15 Aug 2013 14:57:44 -0700 Subject: [PATCH] Commit the correct fix for Jenkin failure Summary: My last commit is not the correct one. Fix it in this diff. Test Plan: Reviewers: CC: Task ID: # Blame Rev: --- build_tools/build_detect_platform | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_tools/build_detect_platform b/build_tools/build_detect_platform index c2749c1f1..bde280b8e 100755 --- a/build_tools/build_detect_platform +++ b/build_tools/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