Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
ade4c80d
Commit
ade4c80d
authored
Sep 19, 2013
by
Emmanuel Milou
Browse files
[#30360] Fix gnome build by checking if sflphoned process is running
Before killing it
parent
89852b37
Changes
1
Hide whitespace changes
Inline
Side-by-side
hudson-sflphone-script.sh
View file @
ade4c80d
...
...
@@ -128,8 +128,14 @@ function build_daemon {
function
build_gnome
{
pushd
daemon
killall sflphoned
make distclean
# Check if program is running
if
[
"
$(
pidof sflphoned
)
"
]
then
killall sflphoned
else
echo
"sflphoned not running"
fi
#make distclean
# Compile pjproject first
pushd
libs
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment