John Morrison <[EMAIL PROTECTED]> wrote: > Last update (fingers crossed!) for a while.
Uploaded. Would you also accept the following patch for your next release? It elliminates an annoying warning when /etc/profile.d/ doesn't exist. --- profile.default 2003-08-21 08:22:12.000000000 +0100 +++ profile 2003-08-21 08:23:34.000000000 +0100 @@ -47,0 +47,0 @@ fi # Run all of the profile.d scripts # Note that these are supplied by separate packages -/bin/find /etc/profile.d/*.sh -type f | while read f; do - if [ -f "$f" ]; then - . "$f" - fi -done +if test -d /etc/profile.d; then + /bin/find /etc/profile.d/*.sh -type f | while read f; do + if [ -f "$f" ]; then + . "$f" + fi + done +fi # Default to unix make mode MAKE_MODE=unix Thanks, -- Elfyn