Skip to content
Snippets Groups Projects
Commit 623c7d26 authored by Marcel Loose's avatar Marcel Loose :sunglasses:
Browse files

Bug 1117: PACKAGES and VARIANTS are no longer quoted in log file. Updated regex pattern

parent ffef18f0
No related branches found
No related tags found
No related merge requests found
...@@ -604,11 +604,11 @@ def main(argv): ...@@ -604,11 +604,11 @@ def main(argv):
# #
# findthe PACKAGE(S) line to get all Packages being build # findthe PACKAGE(S) line to get all Packages being build
# #
packagePattern = re.compile('(PACKAGES *= *".*?")|(PACKAGES *= *[^ ]*)',re.IGNORECASE) packagePattern = re.compile('(PACKAGES *= *.*$)',re.IGNORECASE)
# #
# find the VARIANT(S) line to get the Variant being build # find the VARIANT(S) line to get the Variant being build
# #
variantPattern = re.compile('(VARIANTS *= *".*?")|(VARIANTS *= *[^ ]*)',re.IGNORECASE) variantPattern = re.compile('(VARIANTS *= *.*$)',re.IGNORECASE)
# #
# find the Compiletool line for compiling # find the Compiletool line for compiling
# #
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment