[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: POSIXLY_CORRECT not correctly unset in getopt.m4?
From: |
Eric Blake |
Subject: |
Re: POSIXLY_CORRECT not correctly unset in getopt.m4? |
Date: |
Tue, 07 Sep 2010 14:39:55 -0600 |
User-agent: |
Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100806 Fedora/3.1.2-1.fc13 Mnenhy/0.8.3 Thunderbird/3.1.2 |
On 09/07/2010 02:09 PM, Bruno Haible wrote:
But 'awk' is among the list of portable programs. This should work:
if test `awk 'BEGIN { print ENVIRON["POSIXLY_CORRECT"] }'< /dev/null | wc
-c` = 1; then
: # POSIXLY_CORRECT is not exported
else
: # POSIXLY_CORRECT is exported
fi
Maybe the test whether the value of ENVIRON["POSIXLY_CORRECT"] is empty or
non-empty can be moved into the awk script. I'm not very familiar with awk
programming.
Like so:
gl_awk_probe='BEGIN { for (v in ENVIRON)
if (v == "POSIXLY_CORRECT") print "x" }'
case ${POSIXLY_CORRECT:+x}`awk "$gl_awk_probe" </dev/null` in
xx) gl_had_POSIXLY_CORRECT=exported ;;
x) gl_had_POSIXLY_CORRECT=yes ;;
*) gl_had_POSIXLY_CORRECT= ;;
esac
except that now we're stuck on the issue of finding a portable $AWK that
understands ENVIRON.
--
Eric Blake address@hidden +1-801-349-2682
Libvirt virtualization library http://libvirt.org
- Re: POSIXLY_CORRECT not correctly unset in getopt.m4?, (continued)
- Re: POSIXLY_CORRECT not correctly unset in getopt.m4?, Dustin J. Mitchell, 2010/09/07
- Re: POSIXLY_CORRECT not correctly unset in getopt.m4?, Eric Blake, 2010/09/07
- [PATCH] docs: mention bash vs. POSIXLY_CORRECT, Eric Blake, 2010/09/07
- Re: POSIXLY_CORRECT not correctly unset in getopt.m4?, Bruno Haible, 2010/09/07
- Re: POSIXLY_CORRECT not correctly unset in getopt.m4?, Eric Blake, 2010/09/07
- Re: POSIXLY_CORRECT not correctly unset in getopt.m4?, Ralf Wildenhues, 2010/09/07
- Re: POSIXLY_CORRECT not correctly unset in getopt.m4?, Eric Blake, 2010/09/07
- Re: POSIXLY_CORRECT not correctly unset in getopt.m4?, Ralf Wildenhues, 2010/09/07
- Re: POSIXLY_CORRECT not correctly unset in getopt.m4?, Eric Blake, 2010/09/07
- Re: POSIXLY_CORRECT not correctly unset in getopt.m4?, Eric Blake, 2010/09/07
- Re: POSIXLY_CORRECT not correctly unset in getopt.m4?,
Eric Blake <=
- [PATCH] getopt: handle POSIXLY_CORRECT set but not exported, Eric Blake, 2010/09/07
- Re: [PATCH] getopt: handle POSIXLY_CORRECT set but not exported, Dustin J. Mitchell, 2010/09/07
- Re: POSIXLY_CORRECT not correctly unset in getopt.m4?, Paolo Bonzini, 2010/09/08
- Re: POSIXLY_CORRECT not correctly unset in getopt.m4?, Bruno Haible, 2010/09/08
- Re: POSIXLY_CORRECT not correctly unset in getopt.m4?, Paolo Bonzini, 2010/09/08
- Re: POSIXLY_CORRECT not correctly unset in getopt.m4?, Eric Blake, 2010/09/08
Re: POSIXLY_CORRECT not correctly unset in getopt.m4?, Eric Blake, 2010/09/07