diff options
author | Jakub Jelinek <jakub@redhat.com> | 2005-05-04 18:33:36 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2005-05-04 18:33:36 +0000 |
commit | f6cc6cdf0b94eb1608ceeabcab2450c8cd4054a4 (patch) | |
tree | 01abe7e7555ee0d87db36c06881902ac01af2333 /intl/tst-gettext4.sh | |
parent | e759ccae887cac69cd47b878c67eba5dd1934f56 (diff) | |
download | glibc-f6cc6cdf0b94eb1608ceeabcab2450c8cd4054a4.tar glibc-f6cc6cdf0b94eb1608ceeabcab2450c8cd4054a4.tar.gz glibc-f6cc6cdf0b94eb1608ceeabcab2450c8cd4054a4.tar.bz2 glibc-f6cc6cdf0b94eb1608ceeabcab2450c8cd4054a4.zip |
Updated to fedora-glibc-20050504T1818
Diffstat (limited to 'intl/tst-gettext4.sh')
-rwxr-xr-x | intl/tst-gettext4.sh | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/intl/tst-gettext4.sh b/intl/tst-gettext4.sh index 8acdd37882..68779be04d 100755 --- a/intl/tst-gettext4.sh +++ b/intl/tst-gettext4.sh @@ -21,18 +21,15 @@ # 02111-1307 USA. common_objpfx=$1 -objpfx=$2 +run_program_prefix=$2 +objpfx=$3 LC_ALL=C export LC_ALL -# Generate the test data. -test -d ${objpfx}domaindir || mkdir ${objpfx}domaindir # Create the domain directories. -test -d ${objpfx}domaindir/de_DE || mkdir ${objpfx}domaindir/de_DE -test -d ${objpfx}domaindir/de_DE/LC_MESSAGES || mkdir ${objpfx}domaindir/de_DE/LC_MESSAGES -test -d ${objpfx}domaindir/fr_FR || mkdir ${objpfx}domaindir/fr_FR -test -d ${objpfx}domaindir/fr_FR/LC_MESSAGES || mkdir ${objpfx}domaindir/fr_FR/LC_MESSAGES +mkdir -p ${objpfx}domaindir/de_DE/LC_MESSAGES +mkdir -p ${objpfx}domaindir/fr_FR/LC_MESSAGES # Populate them. msgfmt -o ${objpfx}domaindir/de_DE/LC_MESSAGES/multithread.mo tst-gettext4-de.po msgfmt -o ${objpfx}domaindir/fr_FR/LC_MESSAGES/multithread.mo tst-gettext4-fr.po @@ -42,7 +39,6 @@ export GCONV_PATH LOCPATH=${common_objpfx}localedata export LOCPATH -${common_objpfx}elf/ld.so --library-path $common_objpfx \ -${objpfx}tst-gettext4 > ${objpfx}tst-gettext4.out +${run_program_prefix} ${objpfx}tst-gettext4 > ${objpfx}tst-gettext4.out exit $? |