diff options
author | dos-reis <gdr@axiomatics.org> | 2007-09-02 05:09:26 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2007-09-02 05:09:26 +0000 |
commit | 98cd1f5a4b6469760944d4455c04185d571c67ed (patch) | |
tree | 996b82c815c616255defeb7a7a9dad96ef812447 /configure.ac.pamphlet | |
parent | c866e56d51d4b19c8e9526137e8ffae5db233ea9 (diff) | |
download | open-axiom-98cd1f5a4b6469760944d4455c04185d571c67ed.tar.gz |
2007-09-01 Gabriel Dos Reis <gdr@cs.tamu.edu>
* configure.ac.pamphlet (<<find lisp>>): Keep gcl directory test
simple.
* Makefile.pamphlet (maybe-cp-noweb-srcdir): New rule. Factored
from the rule below.
($(addprefix $(axiom_build_bindir)/, notangle noweave)): Make it a
prerequisite.
* config/var-def.mk (WEAVE): Export.
(WEAVE): Likewise.
src/scripts/
2007-09-01 Gabriel Dos Reis <gdr@cs.tamu.edu>
* document.in (TANGLE): New environment variable. Use in place
nacked notangle.
(WEAVE): New environment variable. Use in place of noweave.
Diffstat (limited to 'configure.ac.pamphlet')
-rw-r--r-- | configure.ac.pamphlet | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac.pamphlet b/configure.ac.pamphlet index 4e130c06..ccce5409 100644 --- a/configure.ac.pamphlet +++ b/configure.ac.pamphlet @@ -770,7 +770,7 @@ if test -z $axiom_lisp; then ## A lisp may not be available AND the GCL source may also ## be missing. Instruct user to either build one or get ## the dependencies from our website. - if test -z $AXIOM_LISP -a ! -d ${srcdir}/gcl; then + if test -z $AXIOM_LISP && test ! -d ${srcdir}/gcl; then AC_MSG_ERROR([OpenAxiom needs GCL. Either separately build one, or get the dependency tarball from OpenAxiom website.]) fi |