diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2020-03-15 13:14:36 +0100 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2020-03-15 13:14:36 +0100 |
| commit | 4914800729158cfc6de90b3964c222c4ab225e8e (patch) | |
| tree | 84811e7127c5280bb6dfdfe495af3abcabbaa32a /repo/www/Makefile | |
| parent | 039dc0e133229482ff93aac1eac07e1d06465d2f (diff) | |
| download | memory-leaks-4914800729158cfc6de90b3964c222c4ab225e8e.tar.xz | |
Use git-ls-files(1) to compute list of source files
It's not clear whether or not Python supports '\0' for null: the
reference[1] says nothing about this specific escape sequence, but
Python 3.7 seems to recognize it…
repr('\0') says "'\\x00'", so let's use that.
[1]: https://docs.python.org/3/reference/lexical_analysis.html#string-and-bytes-literals
Diffstat (limited to 'repo/www/Makefile')
| -rw-r--r-- | repo/www/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/repo/www/Makefile b/repo/www/Makefile index ca50752..8f5bb2a 100644 --- a/repo/www/Makefile +++ b/repo/www/Makefile @@ -16,7 +16,7 @@ dependencies = deps.mk include $(dependencies) $(dependencies): make-deps.py $(text_folders) - python3 $< "$(TEXT_FILES)" $(TOP_DIR) $(OUT_DIR) + python3 $< "$(TEXT_FILES)" $(OUT_DIR) site: $(pages) |
