Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
linphone-cmake-builder
Commits
2bbc7c9d
Commit
2bbc7c9d
authored
Dec 04, 2014
by
Ghislain MARY
Browse files
Fix wrong catching of line starting by 'install' but not being install commands.
parent
21c31268
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
scripts/prebuilt_zip.py
scripts/prebuilt_zip.py
+1
-1
No files found.
scripts/prebuilt_zip.py
View file @
2bbc7c9d
...
...
@@ -20,7 +20,7 @@ def main(argv=None):
if
not
os
.
path
.
exists
(
rootdir
):
os
.
makedirs
(
rootdir
)
fin
=
open
(
log_filename
,
'r'
)
regexp1
=
re
.
compile
(
r
'^((.*?)/bin/)?install ((-c|-m [0-9]+) )
*
(.*)$'
)
regexp1
=
re
.
compile
(
r
'^((.*?)/bin/)?install ((-c|-m [0-9]+) )
+
(.*)$'
)
regexp2
=
re
.
compile
(
r
'^cp -p (.*)$'
)
for
line
in
fin
:
l
=
None
...
...
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