diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-02-26 09:00:18 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2014-10-21 09:26:49 -0600 |
commit | 6edd329f2057bbd709a169f99a8ea89d83e6b1ad (patch) | |
tree | 3de520da5ab33a4e2fda1f0c4c65a872163dd423 /makedepend.SH | |
parent | 636a024b8c315521b8ddde9c3a7d31cea4e8d2f2 (diff) | |
download | perl-6edd329f2057bbd709a169f99a8ea89d83e6b1ad.tar.gz |
makedepend.SH: Comment out unnecessary code
This causes problems currently for z/OS. But, since we don't know why
it was there, I'm leaving it in as a placeholder.
Diffstat (limited to 'makedepend.SH')
-rwxr-xr-x | makedepend.SH | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/makedepend.SH b/makedepend.SH index f992af3f10..3b8e050858 100755 --- a/makedepend.SH +++ b/makedepend.SH @@ -166,9 +166,10 @@ for file in `$cat .clist`; do -e p \ -e '}' ) >UU/$file.c - if [ "$osname" = os390 -a "$file" = perly.c ]; then - $echo '#endif' >>UU/$file.c - fi + # We're not sure why this was there; the #endif is extraneous on modern z/OS + #if [ "$osname" = os390 -a "$file" = perly.c ]; then + # $echo '#endif' >>UU/$file.c + #fi if [ "$osname" = os390 ]; then $cppstdin $finc -I. $cppflags $cppminus <UU/$file.c | |