We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48c5bfe commit 3fc213cCopy full SHA for 3fc213c
ground/gcs/gcsversioninfo.pri
@@ -40,5 +40,3 @@ REL_AUTHORS_DEST = $$system_path($$AUTHORS_PATH/gcsrelauthors.html)
40
DEPENDPATH *= $$VERSION_INFO_PATH
41
HEADERS *= $$VERSION_INFO_HEADER
42
DEFINES += 'GCS_VERSION_INFO_FILE=\\\"$$VERSION_INFO_HEADER\\\"'
43
-DEFINES += 'GCS_AUTHORS_FILE=\\\"$$AUTHORS_DEST\\\"'
44
-DEFINES += 'GCS_REL_AUTHORS_FILE=\\\"$$REL_AUTHORS_DEST\\\"'
make/scripts/version-info.py
@@ -144,7 +144,7 @@ def _get_authors(self):
144
self._authors = []
145
self._exec('shortlog -sn')
146
if self._rc == 0:
147
- self._authors = [l.strip().split('\t', 1)[1] for l in self._out.splitlines()]
+ self._authors = [l.strip().split(None, 1)[1] for l in self._out.splitlines()]
148
149
150
def __init__(self, path = "."):
0 commit comments