summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorKyle Fuller <inbox@kylefuller.co.uk>2012-03-22 14:40:05 +0000
committerKyle Fuller <inbox@kylefuller.co.uk>2012-03-22 14:40:05 +0000
commit0e574368160b88126e0635c12102e6433381abd7 (patch)
tree1239571b5733cda130f7e6febe0a2cc57f439ba8 /configure
parentd62e3215202ebb9ac0707b08e233acc130888fe8 (diff)
Use `xcrun clang++` on OS X as the compiler
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index f354b62e1..3ae77e8fc 100755
--- a/configure
+++ b/configure
@@ -228,7 +228,7 @@ if ($config{OSNAME} =~ /darwin/i)
{
$config{IS_DARWIN} = "YES";
$config{STARTSCRIPT} = "org.inspircd.plist"; # start script for OSX.
- $config{CC} = "clang++"; # C++ compiler for OSX.
+ $config{CC} = "xcrun clang++"; # C++ compiler for OSX.
}
else
{