Fixed quoting in INSTALL check.
This commit is contained in:
parent
6ed40bb2af
commit
8418d8f3dd
|
@ -4753,7 +4753,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
|
||||||
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
|
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
|
||||||
|
|
||||||
case "$INSTALL" in
|
case "$INSTALL" in
|
||||||
\\/$* | ?:\\/* ) ;;
|
[\\/$]* | ?:[\\/]* ) ;;
|
||||||
*) INSTALL="\\\$(TOPSRCDIR)/$INSTALL" ;;
|
*) INSTALL="\\\$(TOPSRCDIR)/$INSTALL" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
|
@ -90,7 +90,7 @@ AC_PATH_PROG(LDCONFIG, ldconfig, true, [/sbin /usr/sbin $PATH])
|
||||||
AC_PROG_INSTALL
|
AC_PROG_INSTALL
|
||||||
dnl Prepend src dir to install path dir if it's a relative path
|
dnl Prepend src dir to install path dir if it's a relative path
|
||||||
case "$INSTALL" in
|
case "$INSTALL" in
|
||||||
[\\/$]* | ?:[\\/]* ) ;;
|
[[\\/$]]* | ?:[[\\/]]* ) ;;
|
||||||
*) INSTALL="\\\$(TOPSRCDIR)/$INSTALL" ;;
|
*) INSTALL="\\\$(TOPSRCDIR)/$INSTALL" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue