summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Curt Coder <curtcoder@mail.com>2015-03-30 09:45:19 +0300
committer Curt Coder <curtcoder@mail.com>2015-03-30 13:30:45 +0300
commit7846f994b373b80ea8f885566ffb886424230ec4 (patch)
treec8e92160a1d5ea067df4b043c4b5e013488a6a16
parent70e09f96186da39ed8afb9b2557b7c472948a124 (diff)
Fixed "ld: warning: directory not found for option '-L/usr/lib64'" on OS X. (nw)
-rw-r--r--3rdparty/genie/src/base/os.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/genie/src/base/os.lua b/3rdparty/genie/src/base/os.lua
index 7d9351eaf58..4bae381c4f4 100644
--- a/3rdparty/genie/src/base/os.lua
+++ b/3rdparty/genie/src/base/os.lua
@@ -77,7 +77,7 @@
table.insert(formats, "%s")
path = path or ""
- if os.is64bit() then
+ if os.is64bit() and not os.is("macosx") then
path = path .. ":/lib64:/usr/lib64/:usr/local/lib64"
end
path = path .. ":/lib:/usr/lib:/usr/local/lib"