Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/convert_to_utf8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3

import os
import sys
Expand Down
3 changes: 2 additions & 1 deletion templates/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ CC= @CC@
CHMOD= @CHMOD@
INSTALL= @INSTALL@
TRUE= @TRUE@
PYTHON= @PYTHON@

DEFS= @DEFS@

Expand Down Expand Up @@ -61,7 +62,7 @@ all: converttemplates

# Use a stamp file to track conversion, so it only happens once
.converted.stamp:
../scripts/convert_to_utf8 -d .
$(PYTHON) ../scripts/convert_to_utf8 -d .
touch .converted.stamp

converttemplates: .converted.stamp
Expand Down