summaryrefslogtreecommitdiff
path: root/profiles/arch/amd64-fbsd/clang/profile.bashrc
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/arch/amd64-fbsd/clang/profile.bashrc')
-rw-r--r--profiles/arch/amd64-fbsd/clang/profile.bashrc8
1 files changed, 0 insertions, 8 deletions
diff --git a/profiles/arch/amd64-fbsd/clang/profile.bashrc b/profiles/arch/amd64-fbsd/clang/profile.bashrc
deleted file mode 100644
index 496d41b3853d..000000000000
--- a/profiles/arch/amd64-fbsd/clang/profile.bashrc
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-
-# Check if clang/clang++ exist before setting them so that we can more easily
-# switch to this profile and build stages.
-# Some packages will require BUILD_{CC,CXX} variables, bug 595878.
-type -P clang > /dev/null && export CC=clang && export BUILD_CC=clang
-type -P clang++ > /dev/null && [ -f /usr/lib/libc++.so ] && export CXX=clang++ && export BUILD_CXX=clang++