Fixed quoting in INSTALL check.

This commit is contained in:
Alexandre Julliard 2002-12-24 02:39:47 +00:00
parent 6ed40bb2af
commit 8418d8f3dd
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -4753,7 +4753,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
case "$INSTALL" in
\\/$* | ?:\\/* ) ;;
[\\/$]* | ?:[\\/]* ) ;;
*) INSTALL="\\\$(TOPSRCDIR)/$INSTALL" ;;
esac

View File

@ -90,7 +90,7 @@ AC_PATH_PROG(LDCONFIG, ldconfig, true, [/sbin /usr/sbin $PATH])
AC_PROG_INSTALL
dnl Prepend src dir to install path dir if it's a relative path
case "$INSTALL" in
[\\/$]* | ?:[\\/]* ) ;;
[[\\/$]]* | ?:[[\\/]]* ) ;;
*) INSTALL="\\\$(TOPSRCDIR)/$INSTALL" ;;
esac