We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9069d64 commit bdb889eCopy full SHA for bdb889e
[refs]
@@ -1,2 +1,2 @@
1
---
2
-refs/heads/master: e7afe11a2a9e1480862bdfc3ead3dbc02938fc0a
+refs/heads/master: 81a93eff938003ad026297d589d83289fb5dce3f
trunk/configure
@@ -471,11 +471,15 @@ do
471
export CXXFLAGS
472
export LDFLAGS
473
474
- # FIXME: This ends up filling the screen with a bunch of LLVM configuration,
475
- # depriving the user of seeing our configuration info
476
cd $LLVM_BUILD_DIR
477
- # FIXME: This won't work if CFG_SRC_DIR is absolute
478
- ${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
+ ;;
479
+ *)
480
+ ${CFG_BUILD_DIR}/${CFG_LLVM_SRC_DIR}/configure $LLVM_FLAGS
481
482
+ esac
483
cd $CFG_BUILD_DIR
484
else
485
LLVM_BUILD_DIR=
0 commit comments