mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-26 16:29:28 +00:00
fix build on case-sensitive file systems
This commit is contained in:
parent
14570ffa1f
commit
57d99dfbed
@ -139,10 +139,11 @@ function locateAndCheckInterfacesAndLibraries()
|
|||||||
# and link files from $PREFIX/CIncludes
|
# and link files from $PREFIX/CIncludes
|
||||||
function linkHeaders()
|
function linkHeaders()
|
||||||
{
|
{
|
||||||
# incompatible with Universal Interfaces on case-insensitive file systems
|
# On case-insensitive file systems, there will be some conflicts with
|
||||||
rm -f "$1"/threads.h # does not currently work anyways
|
# newlib. For now, universal interfaces get the right of way.
|
||||||
rm -f "$1"/memory.h # non-standard aliasof string.h
|
rm -f Threads.h # thread.h: does not currently work anyways
|
||||||
rm -f "$1"/strings.h # traditional bsd string functions
|
rm -f Memory.h # memory.h: non-standard aliasof string.h
|
||||||
|
rm -f Strings.h # strings.h: traditional bsd string functions
|
||||||
|
|
||||||
(cd "$1" && find "../../CIncludes" -name '*.h' -exec ln -s {} . \;)
|
(cd "$1" && find "../../CIncludes" -name '*.h' -exec ln -s {} . \;)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user