projects
/
dragonfly.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
0733043
)
custom cc script: Fix "Unterminated quoted string" error
author
John Marino <draco@marino.st>
Mon, 30 Jan 2012 07:48:20 +0000 (08:48 +0100)
committer
John Marino <draco@marino.st>
Mon, 30 Jan 2012 07:48:20 +0000 (08:48 +0100)
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
patch
|
blob
|
blame
|
history
diff --git
a/libexec/customcc/cc.sh
b/libexec/customcc/cc.sh
index
4829ac5
..
2acb4c7
100644
(file)
--- 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