Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-client-qt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review 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-client-qt
Commits
929bc9b9
Commit
929bc9b9
authored
4 years ago
by
Yang Wang
Browse files
Options
Downloads
Patches
Plain Diff
misc: fix qtver parameter missing for new client build script
Change-Id: Ibf553521c3661e4f0ff9b43e88f5e57d9ca42a11
parent
b1465cf4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
make-client.py
+2
-2
2 additions, 2 deletions
make-client.py
with
2 additions
and
2 deletions
make-client.py
+
2
−
2
View file @
929bc9b9
...
...
@@ -111,7 +111,7 @@ def replace_vs_prop(filename, prop, val):
print
(
re
.
sub
(
p
,
val
,
line
),
end
=
''
)
def
deps
(
arch
,
toolset
):
def
deps
(
arch
,
toolset
,
qtver
):
print
(
'
Deps Qt Client Release|
'
+
arch
)
# Fetch QRencode
...
...
@@ -246,7 +246,7 @@ def main():
parsed_args
=
parse_args
()
if
parsed_args
.
deps
:
deps
(
parsed_args
.
arch
,
parsed_args
.
toolset
)
deps
(
parsed_args
.
arch
,
parsed_args
.
toolset
,
parsed_args
.
qtver
)
if
parsed_args
.
build
:
build
(
parsed_args
.
arch
,
parsed_args
.
toolset
,
parsed_args
.
sdk
,
...
...
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