diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-08-29 23:10:40 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-08-29 23:10:40 +0000 |
commit | 132fa48bf9be2073821d6a64b6b7e5266191e1a3 (patch) | |
tree | 138f6859ac3a16b7379fa98eff2de0f5a6b3d3c1 | |
parent | d10f55767f5449b0f5dcd0a0931dbde1b38a1a78 (diff) | |
download | xine-lib-132fa48bf9be2073821d6a64b6b7e5266191e1a3.tar.gz xine-lib-132fa48bf9be2073821d6a64b6b7e5266191e1a3.tar.bz2 |
Fix ACLOCAL_DIR def when aclocl is missing (close SF bug).
CVS patchset: 2556
CVS date: 2002/08/29 23:10:40
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 9834112b4..e673fddd2 100644 --- a/configure.in +++ b/configure.in @@ -1009,7 +1009,7 @@ case "`id`" in ACLOCAL_DIR="`eval $ACLOCAL --print-ac-dir`" AC_MSG_RESULT($ACLOCAL_DIR) else - ACLOCAL_DIR="/usr/local/share/aclocal" + ACLOCAL_DIR="${prefix}/share/aclocal" AC_MSG_RESULT(none - will be installed in $ACLOCAL_DIR) fi escapedprefix="`echo $prefix | sed -e 's/\\//\\\\\//g'`" |