Skip to content
Snippets Groups Projects
Commit ade4c80d authored by Emmanuel Milou's avatar Emmanuel Milou
Browse files

[#30360] Fix gnome build by checking if sflphoned process is running

Before killing it
parent 89852b37
No related branches found
No related tags found
No related merge requests found
...@@ -128,8 +128,14 @@ function build_daemon { ...@@ -128,8 +128,14 @@ function build_daemon {
function build_gnome { function build_gnome {
pushd daemon pushd daemon
# Check if program is running
if [ "$(pidof sflphoned)"]
then
killall sflphoned killall sflphoned
make distclean else
echo "sflphoned not running"
fi
#make distclean
# Compile pjproject first # Compile pjproject first
pushd libs pushd libs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment