X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=makedepend.SH;h=0f32da33c66e47dd0834f0eb83d7dc69f1805fa8;hb=994914430a9d31e91f3ba7f46998670879b75792;hp=8176204e35186e74520d865d5d96f8caa9f25cd9;hpb=099685bc64c7dbceb0d631a2523edb7f61aaf02f;p=p5sagit%2Fp5-mst-13.2.git diff --git a/makedepend.SH b/makedepend.SH index 8176204..0f32da3 100755 --- a/makedepend.SH +++ b/makedepend.SH @@ -102,7 +102,11 @@ for file in `$cat .clist`; do if [ "$osname" = uwin ]; then uwinfix="-e s,\\\\\\\\,/,g -e s,\\([a-zA-Z]\\):/,/\\1/,g" else - uwinfix= + if [ "$osname" = os2 ]; then + uwinfix="-e s,\\\\\\\\,/,g" + else + uwinfix= + fi fi case "$file" in *.c) filebase=`basename $file .c` ;;