From 1db9566f513791929f1e21e86206e5669d5b11c2 Mon Sep 17 00:00:00 2001 From: Ilya Zakharevich Date: Wed, 5 Mar 1997 22:08:43 -0500 Subject: OS/2 patches Chip Salzenberg writes: > > Below is a raw list of the changes I've incorporated into my working > source tree. I've not broken them down by category yet, or edited > their titles; they're in chronological order of application. Here is what I have: a) Minor fix for hints/os2; b) 1 taint test minorly broken (does not unset IFS), and should be switched off on DOSISH systems anyway :-(; c) One additional word made legal in MakeMaker (It was supported before, but a warning was issued). Enjoy, p5p-msgid: 199703060308.WAA22211@monk.mps.ohio-state.edu --- hints/os2.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'hints/os2.sh') 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 -- cgit v1.2.1