This is the mail archive of the cygwin 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]

For me this worked:


Delete the leading TAB in line 70, so that the first character of the line is the E of EOF

 60  # Run all of the profile.d scripts
 61  # Note that these are supplied by separate packages
 62  # Ascending alphanumerical order enforced
 63  if [ -d "/etc/profile.d" ]; then
 64      while read f; do
 65          if [ -f "${f}" ]; then
 66              . "${f}"
 67          fi
 68      done <<- EOF
 69          `/bin/find /etc/profile.d -iname '*.sh' -type f | sort`
 70  EOF
    ^


Greets Ronny


-- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/


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