configure: Handle absolute source paths when configuring LLVM

This commit is contained in:
Brian Anderson 2011-11-03 17:36:22 -07:00
parent e7afe11a2a
commit 81a93eff93

12
configure vendored
View file

@ -471,11 +471,15 @@ do
export CXXFLAGS
export LDFLAGS
# FIXME: This ends up filling the screen with a bunch of LLVM configuration,
# depriving the user of seeing our configuration info
cd $LLVM_BUILD_DIR
# FIXME: This won't work if CFG_SRC_DIR is absolute
${CFG_BUILD_DIR}/${CFG_LLVM_SRC_DIR}/configure $LLVM_FLAGS
case $CFG_SRC_DIR in
/* | [a-z]:* | [A-Z]:*)
${CFG_LLVM_SRC_DIR}/configure $LLVM_FLAGS
;;
*)
${CFG_BUILD_DIR}/${CFG_LLVM_SRC_DIR}/configure $LLVM_FLAGS
;;
esac
cd $CFG_BUILD_DIR
else
LLVM_BUILD_DIR=