diff options
Diffstat (limited to 'hints')
-rw-r--r-- | hints/os2.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hints/os2.sh b/hints/os2.sh index 9bce2a594c..70e478b96f 100644 --- a/hints/os2.sh +++ b/hints/os2.sh @@ -32,7 +32,9 @@ libemx="`../UU/loc . X c:/emx/lib d:/emx/lib e:/emx/lib f:/emx/lib g:/emx/lib h: if test "$libemx" = "X"; then echo "Cannot find C library!"; fi -libpth="$libemx/mt $libemx" +# Acute backslashitis: +libpth="`echo \"$LIBRARY_PATH\" | tr ';\\\' ' /'`" +libpth="$libpth $libemx/mt $libemx" set `emxrev -f emxlibcm` emxcrtrev=$5 |