From 8418d8f3dd32918dae2ecc2bd358b76e85c324a9 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 24 Dec 2002 02:39:47 +0000 Subject: [PATCH] Fixed quoting in INSTALL check. --- configure | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index bdf22586db4..eaa5f654a33 100755 --- a/configure +++ b/configure @@ -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 diff --git a/configure.ac b/configure.ac index 57459143eaa..eb91bc3cfc6 100644 --- a/configure.ac +++ b/configure.ac @@ -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