From b4e81d8fffd8a2f6e407e583c1616b378b68d9a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Tue, 21 Aug 2012 10:12:00 +0000 Subject: [PATCH] =?UTF-8?q?Python=20based=20Boost=20Build=20implementation?= =?UTF-8?q?=20syntax=20error=20corrected.=20Reported=20by=20Paulo=20M?= =?UTF-8?q?=C3=A1rcio=20Figueiredo=20Alves=20.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [SVN r80107] --- src/build/build_request.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build/build_request.py b/src/build/build_request.py index 7b1213d25..118033e1e 100644 --- a/src/build/build_request.py +++ b/src/build/build_request.py @@ -114,7 +114,7 @@ def from_command_line(command_line): # consists of implicit feature values. if e.find("=") != -1 or looks_like_implicit_value(e.split("/")[0]): properties += convert_command_line_element(e) - else if e: + elif e: targets.append(e) return [targets, properties]