Skip to content

Commit

Permalink
Minor fix in the ./build wrapper for ocamlbuild
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15877 85f007b7-540e-0410-9357-904b9bb8a0f7
  • Loading branch information
letouzey committed Oct 6, 2012
1 parent 4e0def8 commit 48b3abb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build
Expand Up @@ -7,7 +7,7 @@ MYCFG=myocamlbuild_config.ml
export CAML_LD_LIBRARY_PATH=`pwd`/_build/kernel/byterun

check_config() {
[ -f $MYCFG ] || (echo "please run ./configure first"; exit 1)
if [ ! -f $MYCFG ]; then echo "please run ./configure first"; exit 1; fi
}

ocb() { $OCAMLBUILD $FLAGS $*; }
Expand Down

0 comments on commit 48b3abb

Please sign in to comment.