From 99c914f0f61fec278e1d1d8022fd999d519717e7 Mon Sep 17 00:00:00 2001 From: John Marino Date: Mon, 30 Jan 2012 08:48:20 +0100 Subject: [PATCH] custom cc script: Fix "Unterminated quoted string" error When updating gcc46 to handle c++ by default, the old quotation mark was accidently left in place, causing a world build breakage at include/rpc. --- libexec/customcc/cc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/customcc/cc.sh b/libexec/customcc/cc.sh index 4829ac52a0..2acb4c7c07 100644 --- a/libexec/customcc/cc.sh +++ b/libexec/customcc/cc.sh @@ -37,7 +37,7 @@ elif [ "${CCVER}" = "clangsvn" ]; then elif [ "${CCVER}" = "gcc46" ]; then INCOPT="-nostdinc \ -isysroot @@INCPREFIX@@ \ - -isystem /usr/include" \ + -isystem /usr/include \ -isystem /usr/include/c++/4.4" fi -- 2.41.0