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.
12 lines
335 B
Bash
Executable File
12 lines
335 B
Bash
Executable File
#! /bin/sh
|
|
. "${srcdir=.}/init.sh"; path_prepend_ . ../src
|
|
|
|
# Verify that $ as end-of-line anchor does not cause a crash.
|
|
# <https://bugzilla.redhat.com/show_bug.cgi?id=483181>
|
|
# <https://savannah.gnu.org/bugs/?25437>
|
|
|
|
: ${MSGGREP=msggrep}
|
|
echo a=b | LC_MESSAGES=C LC_ALL= ${MSGGREP} -P -K -e '^a$' > /dev/null || Exit 1
|
|
|
|
exit $result
|