Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Nate Graham
Kid3
Commits
811fa6fa
Commit
811fa6fa
authored
May 12, 2015
by
Urs Fleisch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix test in build-deb.sh.
parent
e8abd0ab
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
build-deb.sh
build-deb.sh
+3
-2
No files found.
build-deb.sh
View file @
811fa6fa
...
...
@@ -11,6 +11,7 @@ if test -n "$ppaversion"; then
if
which ubuntu-distro-info
>
/dev/null
;
then
if
distrib_nr
=
$(
ubuntu-distro-info
--series
=
$distribution
-r
2>/dev/null
)
;
then
distrib_nr
=
${
distrib_nr
/./
}
distrib_nr
=
${
distrib_nr
/ LTS/
}
distrib_id
=
Ubuntu
elif
distrib_nr
=
$(
debian-distro-info
--series
=
$distribution
-r
2>/dev/null
)
;
then
distrib_nr
=
${
distrib_nr
%.*
}
...
...
@@ -28,8 +29,8 @@ else
distrib_id
=
$(
lsb_release
-si
)
fi
if
test
$distrib_id
=
"Ubuntu"
-a
$distrib_nr
-ge
1504
||
test
$distrib_id
=
"Debian"
-a
$distrib_nr
-ge
9
;
then
if
(
test
$distrib_id
=
"Ubuntu"
&&
test
$distrib_nr
-ge
1504
)
||
(
test
$distrib_id
=
"Debian"
&&
test
$distrib_nr
-ge
9
)
;
then
qtversion
=
5
else
qtversion
=
4
...
...
Write
Preview
Markdown
is supported
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