From: Junqian Gordon Xu <xjqian@gmail.com>
To: openembedded-devel@lists.openembedded.org
Subject: Re: patch base-files /etc/profile
Date: Thu, 17 Apr 2008 22:49:24 -0500 [thread overview]
Message-ID: <48081A44.4000008@gmail.com> (raw)
In-Reply-To: <1208473504.21779.3.camel@isis>
On 04/17/2008 06:05 PM, Khem Raj wrote:
> Hi
>
> I was seeing that on Angstrom.2008 I was not getting TSLIB_TSDEVICE
> environment variable set though it should be as it was
> invoking /etc/profile.d/tslib.sh in /etc/profile. However the 'ls'
> command in there was not really working well.
>
> This patch fixes the problem. Now I see TALIB_TSDEVICE variable set
> everytime.
>
> OK for .dev ?
>
> Thanks
>
> -Khem
> ============================================================
> --- packages/base-files/base-files/profile
> c1afd65b969f708eab144ec909358f3c8f22a411
> +++ packages/base-files/base-files/profile
> e24b90b96edb24d3af735f32c72528e6a01d617d
> @@ -20,8 +20,10 @@ if [ -d /etc/profile.d ]; then
> fi
>
> if [ -d /etc/profile.d ]; then
> - for i in `ls /etc/profile.d/`; do
> - . /etc/profile.d/$i
> + for i in /etc/profile.d/*.sh; do
> + if [ -r $i ]; then
> + . $i
> + fi
> done
> unset i
> fi
looks good to me, but why not keep the absolute path:
. /etc/profile.d/$i
Regards
Gordon
next prev parent reply other threads:[~2008-04-18 3:49 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-04-17 23:05 patch base-files /etc/profile Khem Raj
2008-04-17 23:55 ` Thomas Kunze
2008-04-18 3:49 ` Junqian Gordon Xu [this message]
2008-04-18 6:57 ` Khem Raj
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=48081A44.4000008@gmail.com \
--to=xjqian@gmail.com \
--cc=openembedded-devel@lists.openembedded.org \
/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.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.