From 426c3755fe89ba028376719605faccf96410831d Mon Sep 17 00:00:00 2001 From: obache Date: Thu, 3 Apr 2014 09:05:11 +0000 Subject: 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. --- bootstrap/bootstrap | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'bootstrap/bootstrap') 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 # 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 -- cgit v1.2.3