diff options
author | Juergen Keil <jkeil@users.sourceforge.net> | 2001-10-01 09:57:28 +0000 |
---|---|---|
committer | Juergen Keil <jkeil@users.sourceforge.net> | 2001-10-01 09:57:28 +0000 |
commit | fd9289731c3b22b674bb4f3a98f22bc19df30775 (patch) | |
tree | f1c3c7a099fd6e7eb118b3b5aa33996c798b92fc | |
parent | d404f0286fbd60fe3ed62dae730eb8f5a3f0c54e (diff) | |
download | xine-lib-fd9289731c3b22b674bb4f3a98f22bc19df30775.tar.gz xine-lib-fd9289731c3b22b674bb4f3a98f22bc19df30775.tar.bz2 |
Must quote '^', it's a bourne shell metacharacter
CVS patchset: 713
CVS date: 2001/10/01 09:57:28
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 08a756319..186a45acc 100644 --- a/configure.in +++ b/configure.in @@ -659,7 +659,7 @@ case "`id`" in AC_MSG_RESULT(none - will be installed in $ACLOCAL_DIR) fi escapedprefix="`echo $prefix | sed -e 's/\\//\\\\\//g'`" - ACLOCAL_DIR="`echo $ACLOCAL_DIR|sed -e s/^$escapedprefix/'\${prefix}'/`" + ACLOCAL_DIR="`echo $ACLOCAL_DIR|sed -e 's/^'$escapedprefix/'\${prefix}'/`" AC_SUBST(ACLOCAL_DIR) ;; esac |