diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-09-19 21:23:55 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-09-19 21:50:09 +0300 |
commit | 9b74656d01e24f11a6980d2795bdc2b9b17e35bc (patch) | |
tree | 76b92dbb963b47dbe8716a4c89b6ca05135c654c /solenv/bin/macosx-create-bundle | |
parent | ed5c2c95b7ec0f6b81e4ad7b8dd481bf8e494b1d (diff) |
Start on experimental support for 64-bit Mac code
Rename the --enable-cl-x64 switch to --enable-64-bit and make its
meaning more generic. Drop the CL_X64 config variable, introduce the
more generic BITNESS_OVERRIDE instead.
Does not build yet.
Change-Id: Iac66afe31dceaf40c8262fec2e5aef6a751ba3d2
Diffstat (limited to 'solenv/bin/macosx-create-bundle')
-rwxr-xr-x | solenv/bin/macosx-create-bundle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/macosx-create-bundle b/solenv/bin/macosx-create-bundle index 2064e4d97565..a458e1413a6a 100755 --- a/solenv/bin/macosx-create-bundle +++ b/solenv/bin/macosx-create-bundle @@ -75,7 +75,7 @@ while [ $# != 0 ]; do # Do nothing as this step is obsolete : - elif printf "$filetype" | grep -q 'Mach-O dynamically linked shared library'; then + elif printf "$filetype" | grep -q 'dynamically linked shared library'; then # Screen out lib\w+static libraries as they are not used directly if ! printf "$inputfilename" | grep -q -x -E 'lib\w+static.*\.dylib'; then # Create jnilib link |