zsh-workers
 help / color / mirror / code / Atom feed
From: Bernd Steinhauser <linux@bernd-steinhauser.de>
To: Peter Stephenson <p.w.stephenson@ntlworld.com>
Cc: zsh-workers@sunsite.dk
Subject: Re: 4.3.6/cvs: Test failed: Y02compmatch.ztst
Date: Sun, 12 Oct 2008 00:38:49 +0200	[thread overview]
Message-ID: <48F12AF9.8030503@bernd-steinhauser.de> (raw)
In-Reply-To: <20081011231657.053e4ab5@pws-pc>

Sadly, that doesn't fix it.

You can see the file in question below.
I did a bit of research and found a few things out.
The important part there is the ". /etc/profile.env".
Looking at profile.env (which is autogenerated from /etc/env.d) and 
unsetting LANG and LC_ALL fixed the problem, they were both set to
de_DE.UTF-8.

Regards,
Bernd

# /etc/zsh/zprofile
# Copyright 2008 Bernd Steinhauser <berniyh@exherbo.org>
# Distributed under the terms of the GNU General Public License v2
# Based in part upon 'zprofile' from Gentoo, which is:
#     Copyright 1999-2008 Gentoo Foundation.


# Load environment settings from profile.env, which is created by
# "eselect env update" from the files in /etc/env.d
if [[ -e /etc/profile.env ]] ; then
         . /etc/profile.env
fi

#077 would be more secure, but 022 is generally quite realistic
umask 022

# Set up PATH depending on whether we're root or a normal user.
# There's no real reason to exclude sbin paths from the normal user,
# but it can make tab-completion easier when they aren't in the
# user's PATH to pollute the executable namespace.
#
# It is intentional in the following line to use || instead of -o.
# This way the evaluation can be short-circuited and calling whoami is
# avoided.
if [[ "$EUID" = "0" ]] || [[ "$USER" = "root" ]] ; then
 
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:${ROOTPATH}"
else
         PATH="/usr/local/bin:/usr/bin:/bin:${PATH}"
fi
export PATH
unset ROOTPATH

shopts=$-
setopt nullglob
for sh in /etc/profile.d/*.sh ; do
         if [[ -r "$sh" ]] ; then
                 . "$sh"
         fi
done
unsetopt nullglob
set -$shopts
unset sh shopts


  reply	other threads:[~2008-10-11 22:39 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-10-11 22:00 Bernd Steinhauser
2008-10-11 22:16 ` Peter Stephenson
2008-10-11 22:38   ` Bernd Steinhauser [this message]
2008-10-11 23:47   ` Bart Schaefer
2008-10-11 23:49     ` Bart Schaefer
2008-10-14  9:15       ` Bernd Steinhauser

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=48F12AF9.8030503@bernd-steinhauser.de \
    --to=linux@bernd-steinhauser.de \
    --cc=p.w.stephenson@ntlworld.com \
    --cc=zsh-workers@sunsite.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).