mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-19 08:24:12 +00:00
Try to work around the relative install-sh path problem.
Patch from Eli. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109163 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0123c1da35
commit
86fa2f2540
@ -1011,6 +1011,13 @@ fi
|
||||
|
||||
dnl Find the install program
|
||||
AC_PROG_INSTALL
|
||||
dnl Prepend src dir to install path dir if it's a relative path
|
||||
dnl This is a hack for installs that take place in something other
|
||||
dnl than the top level.
|
||||
case "$INSTALL" in
|
||||
[[\\/$]]* | ?:[[\\/]]* ) ;;
|
||||
*) INSTALL="\\\$(TOPSRCDIR)/$INSTALL" ;;
|
||||
esac
|
||||
|
||||
dnl Checks for documentation and testing tools that we can do without. If these
|
||||
dnl are not found then they are set to "true" which always succeeds but does
|
||||
|
Loading…
x
Reference in New Issue
Block a user