Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
7551d501
Commit
7551d501
authored
10 years ago
by
Simon Piette
Browse files
Options
Downloads
Patches
Plain Diff
build-system: output error on stderr
Refs #55333 Change-Id: Ic031c907e87ff45735102707cd31e9463a9b5095
parent
b8708228
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/build-system/build_tarball.sh
+9
-3
9 additions, 3 deletions
tools/build-system/build_tarball.sh
with
9 additions
and
3 deletions
tools/build-system/build_tarball.sh
+
9
−
3
View file @
7551d501
#!/bin/bash
#
# Script to build the source tarball for distribution on sflphone.org
# Inclusion of KDE is a requirement. Run get-kde.sh to have it.
#
# Author: Francois Marier <francois@debian.org>
...
...
@@ -12,21 +13,26 @@ set -o errexit
cd
${
WORKSPACE
}
if
[
!
-e
daemon/configure.ac
]
;
then
echo
"This script must be run in the root directory of the sflphone repository"
echo
"This script must be run in the root directory of the sflphone repository"
>
&2
exit
1
fi
if
[
$#
-ne
1
]
;
then
echo
"Usage:
$(
basename
$0
)
SOFTWARE_VERSION_NUMBER"
echo
"Usage:
$(
basename
$0
)
SOFTWARE_VERSION_NUMBER"
>
&2
exit
2
fi
if
[
!
-d
kde
]
;
then
echo
'No "kde" directory. Make sure get-kde.sh ran at some point.'
>
&2
exit
1
fi
# Use the version fed by launch-build-machine-jenkins.sh
SOFTWARE_VERSION
=
$1
BUILDDIR
=
sflphone-
$SOFTWARE_VERSION
if
[
-e
$BUILDDIR
]
;
then
echo
"The build directory (
$BUILDDIR
) already exists. Delete it first."
echo
"The build directory (
$BUILDDIR
) already exists. Delete it first."
>
&2
exit
3
fi
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment