diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-09-19 07:26:54 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-09-19 07:40:14 +0200 |
commit | a66db2cb7897fe0e40e9e520f75cccb14d3a1721 (patch) | |
tree | b03bdd30dc8dbeff10d05bd3162e50c739aec479 | |
parent | 9e058c6e7292b628ca08bb34b5930d0f4a77ef27 (diff) | |
download | samba-a66db2cb7897fe0e40e9e520f75cccb14d3a1721.tar.gz samba-a66db2cb7897fe0e40e9e520f75cccb14d3a1721.tar.bz2 samba-a66db2cb7897fe0e40e9e520f75cccb14d3a1721.zip |
waf: fix typos in GIT_COMMIT_* strings
metze
-rw-r--r-- | buildtools/wafsamba/samba_version.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/buildtools/wafsamba/samba_version.py b/buildtools/wafsamba/samba_version.py index 398f6eee60..e5a8d6196c 100644 --- a/buildtools/wafsamba/samba_version.py +++ b/buildtools/wafsamba/samba_version.py @@ -117,10 +117,10 @@ also accepted as dictionary entries here string+="#define SAMBA_VERSION_RC_RELEASE %u\n" % self.RC_RELEASE try: - string+="#define SAMBA_VERSION_GIT_COMMIT_ABBREV " + self.GIT_COMMIT_ABBREV + "\n" + string+="#define SAMBA_VERSION_GIT_COMMIT_ABBREV \"" + self.GIT_COMMIT_ABBREV + "\"\n" + string+="#define SAMBA_VERSION_GIT_COMMIT_FULLREV \"" + self.GIT_COMMIT_FULLREV + "\"\n" + string+="#define SAMBA_VERSION_GIT_COMMIT_DATE \"" + self.GIT_COMMIT_DATE + "\"\n" string+="#define SAMBA_VERSION_GIT_COMMIT_TIME " + self.GIT_COMMIT_TIME + "\n" - string+="#define SAMBA_VERSION_GIT_COMMIT_FULLREV " + self.GIT_COMMIT_TIME + "\n" - string+="#define SAMBA_VERSION_GIT_COMMIT_DATE " + self.GIT_COMMIT_DATA + "\n" except AttributeError: pass |