diff options
author | Pierre Weis <Pierre.Weis@inria.fr> | 2007-02-12 07:59:44 +0000 |
---|---|---|
committer | Pierre Weis <Pierre.Weis@inria.fr> | 2007-02-12 07:59:44 +0000 |
commit | 7d5cfe12813aa1ff8ca8a6ad1fbebbb3172e20e2 (patch) | |
tree | ff022305238a1746799c086434a54e1b34535197 /build/fastworld.sh | |
parent | 5dfee27596109571a8a086d05927b7248c62a8cf (diff) | |
download | ocaml-7d5cfe12813aa1ff8ca8a6ad1fbebbb3172e20e2.tar.gz |
The bash builtin command `source' is not a Bourne shell command. On some
systems this leads to the error "source command not found".
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@7852 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'build/fastworld.sh')
-rwxr-xr-x | build/fastworld.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/fastworld.sh b/build/fastworld.sh index d3e6ddca36..16b4b9b327 100755 --- a/build/fastworld.sh +++ b/build/fastworld.sh @@ -3,7 +3,7 @@ cd `dirname $0` set -e ./mkconfig.sh ./mkmyocamlbuild_config.sh -source ../config/config.sh +. ../config/config.sh if [ "x$EXE" = "x.exe" ]; then ./boot-c-parts-windows.sh else @@ -12,7 +12,7 @@ fi ./boot.sh $@ cd .. -source build/targets.sh +. build/targets.sh OCAMLMKLIB_BYTE="tools/ocamlmklib.byte" set -x $OCAMLBUILD $@ -log _boot_fast_log \ |