aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfilliatr1999-08-18 10:25:57 +0000
committerfilliatr1999-08-18 10:25:57 +0000
commitce1b28cfe404cce72f14012a7c2b7d4c866fb9b3 (patch)
tree69645005da02f52a4b6bd34e4dd35c119503776a
parenta9cab41ba380e1e5ab2c4d18880a73dbafbd914b (diff)
suppression de l'option -nowarning qui n'est pas saine
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13 85f007b7-540e-0410-9357-904b9bb8a0f7
-rwxr-xr-xconfigure10
1 files changed, 4 insertions, 6 deletions
diff --git a/configure b/configure
index 94bc587c01..8da11ae6c9 100755
--- a/configure
+++ b/configure
@@ -33,7 +33,6 @@ mandir_spec=no
emacslib_spec=no
emacs_spec=no
arch_spec=no
-caml_warnings=""
COQTOP=`pwd`
@@ -84,7 +83,6 @@ 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";;
*) echo "Unknown option \"$1\"." 1>&2; exit 2;;
esac
shift
@@ -385,8 +383,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|" \
- -e "s|NATIVECAMLC|$nativecamlc $caml_warnings|" \
+ -e "s|BYTECAMLC|$bytecamlc|" \
+ -e "s|NATIVECAMLC|$nativecamlc|" \
-e "s|STRIPCOMMAND|$STRIPCOMMAND|" \
$COQTOP/config/Makefile.template > $COQTOP/config/Makefile;;
*)
@@ -409,8 +407,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|" \
- -e "s|NATIVECAMLC|$nativecamlc $caml_warnings|" \
+ -e "s|BYTECAMLC|$bytecamlc|" \
+ -e "s|NATIVECAMLC|$nativecamlc|" \
-e "s|STRIPCOMMAND|$STRIPCOMMAND|" \
$COQTOP/config/Makefile.template > $COQTOP/config/Makefile;;
esac