Skip to content

Commit

Permalink
wrap: Add back filename member in PackageDefinition
Browse files Browse the repository at this point in the history
It is still used by msubprojects.py and cause issues when updating
wrapdb.
  • Loading branch information
xclaesse authored and jpakkane committed Jul 4, 2020
1 parent b510d64 commit e1094df
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions mesonbuild/wrap/wrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ class WrapNotFoundException(WrapException):

class PackageDefinition:
def __init__(self, fname: str):
self.filename = fname
self.type = None
self.values = {} # type: T.Dict[str, str]
self.provided_deps = {} # type: T.Dict[str, T.Optional[str]]
Expand Down

0 comments on commit e1094df

Please sign in to comment.