From: Thomas Dorner Date: Wed, 7 Mar 2001 14:13:31 +0000 (+0100) Subject: 'no *POSIX' Patch speeding up make on BS2000 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=25b8a0ba1907479f8f8212953a6f6eec37c6e057;p=p5sagit%2Fp5-mst-13.2.git 'no *POSIX' Patch speeding up make on BS2000 Message-ID: <6727B1DACFCDD311A757009027CA8D69010A88CB@Ex02.inhouse.start.de> p4raw-id: //depot/perl@9079 --- diff --git a/makedepend.SH b/makedepend.SH index 9a6f4c1..7f8a108 100755 --- a/makedepend.SH +++ b/makedepend.SH @@ -108,7 +108,11 @@ for file in `$cat .clist`; do if [ "$archname" = cygwin ]; then uwinfix="-e s,\\\\\\\\,/,g" else - uwinfix= + if [ "$osname" = posix-bc ]; then + uwinfix="-e s/\\*POSIX(\\(.*\\))/\\1/" + else + uwinfix= + fi fi fi fi