summaryrefslogtreecommitdiffstats
path: root/waftools/generators/sources.py
diff options
context:
space:
mode:
Diffstat (limited to 'waftools/generators/sources.py')
-rw-r--r--waftools/generators/sources.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/waftools/generators/sources.py b/waftools/generators/sources.py
index 6f1521036a..b6af693e65 100644
--- a/waftools/generators/sources.py
+++ b/waftools/generators/sources.py
@@ -2,11 +2,11 @@ from waflib.Build import BuildContext
import os
def __file2string_cmd__(ctx):
- return '"${{BIN_PERL}}" "{0}/TOOLS/file2string.pl" "${{SRC}}" > "${{TGT}}"' \
+ return '"${{BIN_PYTHON}}" "{0}/TOOLS/file2string.py" "${{SRC}}" > "${{TGT}}"' \
.format(ctx.srcnode.abspath())
def __matroska_cmd__(ctx, argument):
- return '"${{BIN_PERL}}" "{0}/TOOLS/matroska.pl" "{1}" "${{SRC}}" > "${{TGT}}"' \
+ return '"${{BIN_PYTHON}}" "{0}/TOOLS/matroska.py" "{1}" "${{SRC}}" > "${{TGT}}"' \
.format(ctx.srcnode.abspath(), argument)
def __zshcomp_cmd__(ctx, argument):