We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 379ab50 + d37bb86 commit cab343bCopy full SHA for cab343b
2 files changed
scripts/convert_to_utf8
@@ -1,4 +1,4 @@
1
-#!/usr/bin/python3
+#!/usr/bin/env python3
2
3
import os
4
import sys
templates/Makefile.in
@@ -31,6 +31,7 @@ CC= @CC@
31
CHMOD= @CHMOD@
32
INSTALL= @INSTALL@
33
TRUE= @TRUE@
34
+PYTHON= @PYTHON@
35
36
DEFS= @DEFS@
37
@@ -61,7 +62,7 @@ all: converttemplates
61
62
63
# Use a stamp file to track conversion, so it only happens once
64
.converted.stamp:
- ../scripts/convert_to_utf8 -d .
65
+ $(PYTHON) ../scripts/convert_to_utf8 -d .
66
touch .converted.stamp
67
68
converttemplates: .converted.stamp
0 commit comments