summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/texinfo-dummy-native/texinfo-dummy/template.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/texinfo-dummy-native/texinfo-dummy/template.py')
-rw-r--r--meta/recipes-extended/texinfo-dummy-native/texinfo-dummy/template.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-extended/texinfo-dummy-native/texinfo-dummy/template.py b/meta/recipes-extended/texinfo-dummy-native/texinfo-dummy/template.py
index 86c7c1811a..4de5bb8f41 100644
--- a/meta/recipes-extended/texinfo-dummy-native/texinfo-dummy/template.py
+++ b/meta/recipes-extended/texinfo-dummy-native/texinfo-dummy/template.py
@@ -28,8 +28,7 @@
28# of the executable from argv[0] and emulate the corresponding program, so 28# of the executable from argv[0] and emulate the corresponding program, so
29# multiple copies of this script will exist under different names. 29# multiple copies of this script will exist under different names.
30 30
31import sys, os, argparse 31import sys, argparse
32
33 32
34this_binary = sys.argv[0].split("/")[-1] 33this_binary = sys.argv[0].split("/")[-1]
35 34
@@ -38,7 +37,8 @@ stub_msg = """
38This stand-in version of %s is not yet fully capable of emulating 37This stand-in version of %s is not yet fully capable of emulating
39the real version from the GNU texinfo suite. If you see this message, file a 38the real version from the GNU texinfo suite. If you see this message, file a
40bug report with details on the recipe that failed. 39bug report with details on the recipe that failed.
41""" % this_binary 40Invoked as %s
41""" % (this_binary, sys.argv)
42 42
43# Autotools setups query the version, so this is actually necessary. Some of 43# Autotools setups query the version, so this is actually necessary. Some of
44# them (lookin' at you, glibc) actually look for the substring "GNU texinfo," 44# them (lookin' at you, glibc) actually look for the substring "GNU texinfo,"