diff options
author | dos-reis <gdr@axiomatics.org> | 2008-03-26 19:48:07 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2008-03-26 19:48:07 +0000 |
commit | 2e49f3a88c546dd39b3140958b5a39f9efc077b7 (patch) | |
tree | 291f6096701f743703d6a755ae51e4ce1451fe59 | |
parent | bb334891d2d19c615581eef327cdfef4afaaea6b (diff) | |
download | open-axiom-2e49f3a88c546dd39b3140958b5a39f9efc077b7.tar.gz |
fix thinko
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | configure.ac.pamphlet | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -21070,7 +21070,7 @@ echo $ECHO_N "checking compiled Lisp file extension... $ECHO_C" >&6; } ## replacement of <newline> by <space>. axiom_save_IFS=$IFS IFS=' ' - axiom_fasl_type=`$axiom_lisp $axiom_quiet_flags $axiom_eval_flags '(progn (format t "axiom_fasl_type=~a" (pathname-type (compile-file-pathname "foo.lisp #+:ecl :type #+:ecl :object"))) (quit))'` + axiom_fasl_type=`$axiom_lisp $axiom_quiet_flags $axiom_eval_flags '(progn (format t "axiom_fasl_type=~a" (pathname-type (compile-file-pathname "foo.lisp" #+:ecl :type #+:ecl :object))) (quit))'` ## Now pull out the fasl type. ECL has the habit of spitting noise ## about internal loading. Therefore, we must look only for a line that diff --git a/configure.ac b/configure.ac index 1fd41c8c..1416bd19 100644 --- a/configure.ac +++ b/configure.ac @@ -293,7 +293,7 @@ if test -z $axiom_fasl_type; then ## replacement of <newline> by <space>. axiom_save_IFS=$IFS IFS=' ' - axiom_fasl_type=`$axiom_lisp $axiom_quiet_flags $axiom_eval_flags '(progn (format t "axiom_fasl_type=~a" (pathname-type (compile-file-pathname "foo.lisp #+:ecl :type #+:ecl :object"))) (quit))'` + axiom_fasl_type=`$axiom_lisp $axiom_quiet_flags $axiom_eval_flags '(progn (format t "axiom_fasl_type=~a" (pathname-type (compile-file-pathname "foo.lisp" #+:ecl :type #+:ecl :object))) (quit))'` ## Now pull out the fasl type. ECL has the habit of spitting noise ## about internal loading. Therefore, we must look only for a line that diff --git a/configure.ac.pamphlet b/configure.ac.pamphlet index bf268ab1..db9119c9 100644 --- a/configure.ac.pamphlet +++ b/configure.ac.pamphlet @@ -944,7 +944,7 @@ if test -z $axiom_fasl_type; then ## replacement of <newline> by <space>. axiom_save_IFS=$IFS IFS=' ' - axiom_fasl_type=`$axiom_lisp $axiom_quiet_flags $axiom_eval_flags '(progn (format t "axiom_fasl_type=~a" (pathname-type (compile-file-pathname "foo.lisp #+:ecl :type #+:ecl :object"))) (quit))'` + axiom_fasl_type=`$axiom_lisp $axiom_quiet_flags $axiom_eval_flags '(progn (format t "axiom_fasl_type=~a" (pathname-type (compile-file-pathname "foo.lisp" #+:ecl :type #+:ecl :object))) (quit))'` ## Now pull out the fasl type. ECL has the habit of spitting noise ## about internal loading. Therefore, we must look only for a line that |