summaryrefslogtreecommitdiff
path: root/bootstrap/bootstrap
diff options
context:
space:
mode:
authorobache <obache>2014-04-03 09:05:11 +0000
committerobache <obache>2014-04-03 09:05:11 +0000
commit426c3755fe89ba028376719605faccf96410831d (patch)
tree3668c714b46f04944ae6d19ee84d8debb699d347 /bootstrap/bootstrap
parent2315ec1bdd723e33f88993e2bc2f190b2705e2d1 (diff)
downloadpkgsrc-426c3755fe89ba028376719605faccf96410831d.tar.gz
Set CLANGBASE=/usr automatically if CLANGBASE is not set and /usr/bin/clang exists.
It is expected in mk/compiler/clang.mk that CLANGBASE is set properly even if builtin clang is selected.
Diffstat (limited to 'bootstrap/bootstrap')
-rwxr-xr-xbootstrap/bootstrap5
1 files changed, 4 insertions, 1 deletions
diff --git a/bootstrap/bootstrap b/bootstrap/bootstrap
index 04a56fd66fd..ce7baaf2fa8 100755
--- a/bootstrap/bootstrap
+++ b/bootstrap/bootstrap
@@ -1,6 +1,6 @@
#! /bin/sh
-# $NetBSD: bootstrap,v 1.204 2014/03/14 21:52:13 ryoon Exp $
+# $NetBSD: bootstrap,v 1.205 2014/04/03 09:05:11 obache Exp $
#
# Copyright (c) 2001-2011 Alistair Crooks <agc@NetBSD.org>
# All rights reserved.
@@ -981,6 +981,9 @@ clang)
echo "CC= clang" >> ${TARGET_MKCONF}
echo "CXX= clang++" >> ${TARGET_MKCONF}
echo "CPP= \${CC} -E" >> ${TARGET_MKCONF}
+ if [ -z "$CLANGBASE" -a -f "/usr/bin/clang" ]; then
+ CLANGBASE="/usr"
+ fi
if [ -n "$CLANGBASE" -o -f "/bin/clang" ]; then
echo "CLANGBASE= $CLANGBASE" >> ${TARGET_MKCONF}
fi