summaryrefslogtreecommitdiff
path: root/makedepend.SH
diff options
context:
space:
mode:
authorIlya Zakharevich <ilya@math.berkeley.edu>1999-01-20 21:08:27 -0500
committerJarkko Hietaniemi <jhi@iki.fi>1999-01-21 14:41:13 +0000
commit9e48464b59e0b7b89a87372e92319dbf3898a257 (patch)
treea76836e0afa0db140aa66d2ee8e6174a04268caf /makedepend.SH
parent5838269bf4d2c9994fe71b290f7afeda12a0d374 (diff)
downloadperl-9e48464b59e0b7b89a87372e92319dbf3898a257.tar.gz
makedepend
To: Mailing list Perl5 <perl5-porters@perl.org> Message-ID: <19990121020827.A25509@monk.mps.ohio-state.edu> p4raw-id: //depot/cfgperl@2661
Diffstat (limited to 'makedepend.SH')
-rwxr-xr-xmakedepend.SH6
1 files changed, 5 insertions, 1 deletions
diff --git a/makedepend.SH b/makedepend.SH
index 8176204e35..0f32da33c6 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` ;;