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.
36 lines
835 B
Bash
Executable File
36 lines
835 B
Bash
Executable File
#! /bin/sh
|
|
. "${srcdir=.}/init.sh"; path_prepend_ . ../src
|
|
|
|
# Test --use-first option with Java .properties syntax.
|
|
|
|
cat <<\EOF > mcat-p-1.in1
|
|
#. Help text (HTML-like) START
|
|
#: clients/inst_ask_config.ycp:119
|
|
Congratulations\!=Gl\u00fcckwunsch\!
|
|
EOF
|
|
|
|
cat <<\EOF > mcat-p-1.in2
|
|
#. Help text (HTML-like) START
|
|
#: clients/inst_ask_config.ycp:119
|
|
Congratulations\!=Herzlichen Gl\u00fcckwunsch\!
|
|
EOF
|
|
|
|
rm -f mcat-p-1.tmp
|
|
|
|
: ${MSGCAT=msgcat}
|
|
${MSGCAT} --use-first --more-than=0 --properties-input --properties-output \
|
|
-o mcat-p-1.tmp mcat-p-1.in1 mcat-p-1.in2 || Exit 1
|
|
LC_ALL=C tr -d '\r' < mcat-p-1.tmp > mcat-p-1.out || Exit 1
|
|
|
|
cat << \EOF > mcat-p-1.ok
|
|
#. Help text (HTML-like) START
|
|
#: clients/inst_ask_config.ycp:119
|
|
Congratulations\!=Gl\u00fcckwunsch\!
|
|
EOF
|
|
|
|
: ${DIFF=diff}
|
|
${DIFF} mcat-p-1.ok mcat-p-1.out
|
|
result=$?
|
|
|
|
exit $result
|