mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
Added self-sanity-check for presence of pcregrep, otherwise many (almost all) tests will fail.
This commit is contained in:
parent
be468136df
commit
777156e0ff
@ -21,6 +21,12 @@ if [ "$(which wmctrl)" == "" ]; then
|
||||
exit -1;
|
||||
fi
|
||||
|
||||
if [ "$(which pcregrep)" == "" ]; then
|
||||
echo "You need to install pcregrep first, try:"
|
||||
echo " sudo apt-get install pcregrep"
|
||||
exit -1;
|
||||
fi
|
||||
|
||||
export XVKBD_EXE=../$XVKBD_EXE
|
||||
export KEYTEST=../keytest.py
|
||||
LYX_HOME=out-home
|
||||
|
Loading…
Reference in New Issue
Block a user