aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure
diff options
context:
space:
mode:
authorGravatar filliatr <filliatr@85f007b7-540e-0410-9357-904b9bb8a0f7>1999-08-17 16:26:31 +0000
committerGravatar filliatr <filliatr@85f007b7-540e-0410-9357-904b9bb8a0f7>1999-08-17 16:26:31 +0000
commit9eabd9dce9f6541099394f0492aeb669a1005ee9 (patch)
tree42a85cb74e31a81c7694ce8f89dcef1103cfa0a7 /configure
parentff3f2da65bb4033b4f60fe3890d5392315fe09b5 (diff)
module Closure
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@11 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure10
1 files changed, 5 insertions, 5 deletions
diff --git a/configure b/configure
index b10fc6bad..94bc587c0 100755
--- a/configure
+++ b/configure
@@ -84,7 +84,7 @@ while : ; do
-byte-tools|-bytetools|--bytetools|--byte-tools) byte_opt_tools=byte;;
-debug|--debug) coq_debug_flag=-g;;
-profile|--profile) coq_profile_flag=-p;;
- -nowarnings) caml_warnings=" -w a ";;
+ -nowarnings) caml_warnings="-w a";;
*) echo "Unknown option \"$1\"." 1>&2; exit 2;;
esac
shift
@@ -385,8 +385,8 @@ case $ARCH in
-e "s|COQPROFILEFLAG|$coq_profile_flag|" \
-e "s|COQTOOLSFLAG|$byte_opt_tools|" \
-e "s|EXECUTEEXTENSION|$EXE|" \
- -e "s|BYTECAMLC|$bytecamlc$caml_warnings $coq_debug_flag|" \
- -e "s|NATIVECAMLC|$nativecamlc$caml_warnings|" \
+ -e "s|BYTECAMLC|$bytecamlc $caml_warnings|" \
+ -e "s|NATIVECAMLC|$nativecamlc $caml_warnings|" \
-e "s|STRIPCOMMAND|$STRIPCOMMAND|" \
$COQTOP/config/Makefile.template > $COQTOP/config/Makefile;;
*)
@@ -409,8 +409,8 @@ case $ARCH in
-e "s|COQPROFILEFLAG|$coq_profile_flag|" \
-e "s|COQTOOLSFLAG|$byte_opt_tools|" \
-e "s|EXECUTEEXTENSION|$EXE|" \
- -e "s|BYTECAMLC|$bytecamlc$caml_warnings $coq_debug_flag|" \
- -e "s|NATIVECAMLC|$nativecamlc$caml_warnings|" \
+ -e "s|BYTECAMLC|$bytecamlc $caml_warnings|" \
+ -e "s|NATIVECAMLC|$nativecamlc $caml_warnings|" \
-e "s|STRIPCOMMAND|$STRIPCOMMAND|" \
$COQTOP/config/Makefile.template > $COQTOP/config/Makefile;;
esac