found by prepending a .
In build-for-llvm-top.sh, dereference variables for exansion.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@39936
91177308-0d34-0410-b5e6-
96231b3b80d8
DepModule:
-BuildCmd: build-for-llvm-top.sh
+BuildCmd: ./build-for-llvm-top.sh
if test ! -d "$config_status" ; then
# We must configure so build a list of configure options
config_options="--prefix=$PREFIX --with-llvmgccdir=$PREFIX"
- echo ./configure $config_options $config_opts
- ./configure $config_options $config_opts
+ config_options="$config_options $config_opts"
+ echo ./configure $config_options
+ ./configure $config_options || (echo "Can't configure llvm" ; exit 1)
fi
echo make $build_opts '&&' make install $build_opts