diff options
author | kakabba <kakabba@yandex-team.ru> | 2022-02-10 16:46:04 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:04 +0300 |
commit | c8e3995898c443e78266f7420aac5fb3da15d413 (patch) | |
tree | a530e068cc107e227deccc80722204db63a4d75d /build/plugins/rodata.py | |
parent | 110a978b66fe6c0916572df51cfead2a9b647174 (diff) | |
download | ydb-c8e3995898c443e78266f7420aac5fb3da15d413.tar.gz |
Restoring authorship annotation for <kakabba@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'build/plugins/rodata.py')
-rw-r--r-- | build/plugins/rodata.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build/plugins/rodata.py b/build/plugins/rodata.py index 3ecb0f9a83..4c5f5749b4 100644 --- a/build/plugins/rodata.py +++ b/build/plugins/rodata.py @@ -127,13 +127,13 @@ class RODataCXX(iw.CustomCommand): return 'RD', self._path, 'light-green' def input(self): - return common.make_tuples([self._path]) + return common.make_tuples([self._path]) def main_out(self): return common.tobuilddir(common.stripext(self._path)) + '.cpp' def output(self): - return common.make_tuples([self.main_out()]) + return common.make_tuples([self.main_out()]) def run(self, extra_args, binary): with open(self.resolve_path(self.main_out()), 'w') as f: @@ -164,5 +164,5 @@ def ro_data(path, unit): return ROData(path, unit) -def init(): - iw.addrule('rodata', ro_data) +def init(): + iw.addrule('rodata', ro_data) |