mirror of
https://github.com/holub/mame
synced 2025-07-04 09:28:51 +03:00
Fixed "ld: warning: directory not found for option '-L/usr/lib64'" on OS X. (nw)
This commit is contained in:
parent
70e09f9618
commit
7846f994b3
2
3rdparty/genie/src/base/os.lua
vendored
2
3rdparty/genie/src/base/os.lua
vendored
@ -77,7 +77,7 @@
|
|||||||
|
|
||||||
table.insert(formats, "%s")
|
table.insert(formats, "%s")
|
||||||
path = path or ""
|
path = path or ""
|
||||||
if os.is64bit() then
|
if os.is64bit() and not os.is("macosx") then
|
||||||
path = path .. ":/lib64:/usr/lib64/:usr/local/lib64"
|
path = path .. ":/lib64:/usr/lib64/:usr/local/lib64"
|
||||||
end
|
end
|
||||||
path = path .. ":/lib:/usr/lib:/usr/local/lib"
|
path = path .. ":/lib:/usr/lib:/usr/local/lib"
|
||||||
|
Loading…
Reference in New Issue
Block a user