diff options
author | Damien Doligez <damien.doligez-inria.fr> | 2010-03-25 14:51:49 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 2010-03-25 14:51:49 +0000 |
commit | 9f1516ff36b6616ed07a25f3b13ce83eb745f061 (patch) | |
tree | bd6c78f6e857e9b9a1d40b960ed95ff6687e99d0 | |
parent | e86750b95a3fa4f6ba960297e99024e9f6c6181f (diff) |
suppress linker warning message on Mac OS X 10.6.x / x86_64
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@10214 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rwxr-xr-x | boot/ocamlc | bin | 1066996 -> 1067021 bytes | |||
-rwxr-xr-x | boot/ocamldep | bin | 301411 -> 301411 bytes | |||
-rwxr-xr-x | boot/ocamllex | bin | 165738 -> 165738 bytes | |||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | testsuite/Makefile | 2 |
5 files changed, 2 insertions, 2 deletions
diff --git a/boot/ocamlc b/boot/ocamlc Binary files differindex 2d86493c1..0c3ac2507 100755 --- a/boot/ocamlc +++ b/boot/ocamlc diff --git a/boot/ocamldep b/boot/ocamldep Binary files differindex 925338520..ad01f71de 100755 --- a/boot/ocamldep +++ b/boot/ocamldep diff --git a/boot/ocamllex b/boot/ocamllex Binary files differindex b5baf9d60..4ce155c5f 100755 --- a/boot/ocamllex +++ b/boot/ocamllex @@ -576,7 +576,7 @@ if test $withsharedlibs = "yes"; then byteccrpath="-Wl,-rpath," mksharedlibrpath="-rpath " shared_libraries_supported=true;; - i[3456]86-*-darwin*) + i[3456]86-*-darwin[4-9]*) mksharedlib="$bytecc -bundle -flat_namespace -undefined suppress -read_only_relocs suppress" bytecccompopts="$dl_defs $bytecccompopts" dl_needs_underscore=false diff --git a/testsuite/Makefile b/testsuite/Makefile index f7999d9a4..6f5571972 100644 --- a/testsuite/Makefile +++ b/testsuite/Makefile @@ -1,6 +1,6 @@ # $Id$ -BASEDIR=$(shell pwd) +BASEDIR=${PWD} default: @echo "Available targets:" |