facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
60 lines
1.3 KiB
Bash
Executable File
60 lines
1.3 KiB
Bash
Executable File
#! /bin/sh
|
|
. "${srcdir=.}/init.sh"; path_prepend_ . ../src
|
|
|
|
# Test what happens with the header entry.
|
|
|
|
cat <<EOF > mcomm-test4.in1
|
|
msgid ""
|
|
msgstr ""
|
|
"Project-Id-Version: GNU one 1.2.3\n"
|
|
"POT-Creation-Date: 2000-12-11 20:49+0100\n"
|
|
"PO-Revision-Date: 2000-03-18 15:25+01:00\n"
|
|
"Last-Translator: Karl Eichwalder <ke@suse.de>\n"
|
|
"Language-Team: German <de@li.org>\n"
|
|
"MIME-Version: 1.0\n"
|
|
"Content-Type: text/plain; charset=iso-8859-1\n"
|
|
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
#: first.c:123
|
|
msgid "1"
|
|
msgstr "1x"
|
|
EOF
|
|
|
|
cat <<EOF > mcomm-test4.in2
|
|
#: hunt.c:759
|
|
msgid "2"
|
|
msgstr "2x"
|
|
EOF
|
|
|
|
: ${MSGCOMM=msgcomm}
|
|
${MSGCOMM} --more-than=0 -o mcomm-test4.tmp \
|
|
mcomm-test4.in1 mcomm-test4.in2 || Exit 1
|
|
LC_ALL=C tr -d '\r' < mcomm-test4.tmp > mcomm-test4.out || Exit 1
|
|
|
|
cat << EOF > mcomm-test4.ok
|
|
msgid ""
|
|
msgstr ""
|
|
"Project-Id-Version: GNU one 1.2.3\n"
|
|
"POT-Creation-Date: 2000-12-11 20:49+0100\n"
|
|
"PO-Revision-Date: 2000-03-18 15:25+01:00\n"
|
|
"Last-Translator: Karl Eichwalder <ke@suse.de>\n"
|
|
"Language-Team: German <de@li.org>\n"
|
|
"MIME-Version: 1.0\n"
|
|
"Content-Type: text/plain; charset=iso-8859-1\n"
|
|
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
#: first.c:123
|
|
msgid "1"
|
|
msgstr "1x"
|
|
|
|
#: hunt.c:759
|
|
msgid "2"
|
|
msgstr "2x"
|
|
EOF
|
|
|
|
: ${DIFF=diff}
|
|
${DIFF} mcomm-test4.ok mcomm-test4.out
|
|
result=$?
|
|
|
|
exit $result
|