diff options
author | Vladimir Volovich <vvv@vsu.ru> | 2008-03-18 00:41:52 +0000 |
---|---|---|
committer | Vladimir Volovich <vvv@vsu.ru> | 2008-03-18 00:41:52 +0000 |
commit | f8ffb07131773909ca4c908c765fa65fd450affe (patch) | |
tree | 8e550946c8f87eaeaf60a504e2c8a8bd3171d11b /Build/source/utils | |
parent | 4918473ccfff07ea805bdde9e8c0254182457d25 (diff) |
fix a typo in documentation for configure options:
--clisp-path should have been --enable-clisp-path
--clisp-dir should have been --enable-clisp-dir
perl -p -i -e 's,--clisp-(path|dir),--enable-clisp-$1,' INSTALL configure configure.ac
git-svn-id: svn://tug.org/texlive/trunk@7006 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils')
-rw-r--r-- | Build/source/utils/xindy/INSTALL | 4 | ||||
-rwxr-xr-x | Build/source/utils/xindy/configure | 4 | ||||
-rw-r--r-- | Build/source/utils/xindy/configure.ac | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/Build/source/utils/xindy/INSTALL b/Build/source/utils/xindy/INSTALL index 29c3f49ad6d..89f55683508 100644 --- a/Build/source/utils/xindy/INSTALL +++ b/Build/source/utils/xindy/INSTALL @@ -29,8 +29,8 @@ about other compilers. xindy contains CLISP, see http://clisp.cons.org/. If you have CLISP installed already, you can use it with the configure option ---enable-external-clisp, maybe you need to specify --clisp-path and ---clisp-dir, too. This is not intensively tested, though; if you have +--enable-external-clisp, maybe you need to specify --enable-clisp-path and +--enable-clisp-dir, too. This is not intensively tested, though; if you have problems with the resulting xindy system, please try it again with the xindy-internal CLISP. diff --git a/Build/source/utils/xindy/configure b/Build/source/utils/xindy/configure index 8a304fac423..6e37b90c363 100755 --- a/Build/source/utils/xindy/configure +++ b/Build/source/utils/xindy/configure @@ -866,8 +866,8 @@ Optional Features: YES) --enable-docs build and install documentation (default is YES) --enable-external-clisp Use an external CLISP instead of the one in rte/ - --clisp-path Where to search the external CLISP - --clisp-dir Where to seach the external CLISP library + --enable-clisp-path Where to search the external CLISP + --enable-clisp-dir Where to seach the external CLISP library Some influential environment variables: CXX C++ compiler command diff --git a/Build/source/utils/xindy/configure.ac b/Build/source/utils/xindy/configure.ac index bc361eb3a4a..a328647b2aa 100644 --- a/Build/source/utils/xindy/configure.ac +++ b/Build/source/utils/xindy/configure.ac @@ -61,10 +61,10 @@ dnl use external or internal CLISP AC_ARG_ENABLE(external-clisp, AS_HELP_STRING([--enable-external-clisp],[Use an external CLISP instead of the one in rte/]),[EXT_CLISP=$enableval],[EXT_CLISP=no]) dnl test for CLISP -AC_ARG_ENABLE(clisp-path, AS_HELP_STRING([--clisp-path],[Where to search the external CLISP]),[CLISP_PATH=$enableval],[CLISP_PATH=$(which clisp)]) +AC_ARG_ENABLE(clisp-path, AS_HELP_STRING([--enable-clisp-path],[Where to search the external CLISP]),[CLISP_PATH=$enableval],[CLISP_PATH=$(which clisp)]) dnl test for CLISP linkkit -AC_ARG_ENABLE(clisp-dir, AS_HELP_STRING([--clisp-dir],[Where to seach the external CLISP library]),[CLISP_DIR=$enableval],[CLISP_DIR=/usr/lib/clisp]) +AC_ARG_ENABLE(clisp-dir, AS_HELP_STRING([--enable-clisp-dir],[Where to seach the external CLISP library]),[CLISP_DIR=$enableval],[CLISP_DIR=/usr/lib/clisp]) if test "$EXT_CLISP" != no; then AM_CONDITIONAL(EXT_CLISP, test -x "$CLISP_PATH" -a -x "$CLISP_DIR/clisp-link" -a -d "$CLISP_DIR/full" -a -d "$CLISP_DIR/linkkit") |