1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

wafsamba: Fix parsing of IS_GIT_VERSION.

This commit is contained in:
Jelmer Vernooij 2010-09-20 13:08:29 -07:00
parent cd7335abd3
commit e4d7bc24d1

View File

@ -27,9 +27,9 @@ also accepted as dictionary entries here
else: else:
setattr(self, a, b) setattr(self, a, b)
if self.IS_GIT_SNAPSHOT is "yes": if self.IS_GIT_SNAPSHOT == "yes":
self.IS_GIT_SNAPSHOT=True self.IS_GIT_SNAPSHOT=True
elif self.IS_GIT_SNAPSHOT is "no": elif self.IS_GIT_SNAPSHOT == "no":
self.IS_GIT_SNAPSHOT=False self.IS_GIT_SNAPSHOT=False
## ##