This is the mail archive of the cygwin-apps mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

small bug in tcsh 6.15.00-4


I've found a small bug in /etc/profile.d/complete.tcsh of tcsh package
6.15.00-4, which makes some problems if $HOME contains white spaces.

The fix for this is an easy one as this diff shows:

% diff /etc/profile.d/complete.tcsh /etc/profile.d/complete.tcsh.org
42,43c42,43
<         if ( -r "$f" ) then
<           set hosts = ($hosts `grep -v "+" "$f" | grep -E -v "^#" | tr
-s " " "       " | cut -f 1`)
---
>         if ( -r $f ) then
>           set hosts = ($hosts `grep -v "+" $f | grep -E -v "^#" | tr
-s " " " " | cut -f 1`)

I'm not familiar with cygwin development. What's the right way to report
such patches? How can i find and contact the maintainer of this package?

Regards,
Steffen Sledz


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]