Boost logo

Boost-Build :

Subject: [Boost-build] PythonPort build_request.py syntax bug
From: Paulo Márcio Figueiredo Alves (pauloalves1986_at_[hidden])
Date: 2012-08-20 13:37:10


Hi,
  the commit revision 78902 introduced a bug in build_request.py line 117.

Before:
            else:
                targets.append(e)

After:
            else if e:
                targets.append(e)

Correct #1:
            else:
                if e:
                    targets.append(e)

Correct #2 (best option):
            elif e:
                targets.append(e)





Boost-Build list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk