diff options
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.py | 6 |
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 | ||
31 | import sys, os, argparse | 31 | import sys, argparse |
32 | |||
33 | 32 | ||
34 | this_binary = sys.argv[0].split("/")[-1] | 33 | this_binary = sys.argv[0].split("/")[-1] |
35 | 34 | ||
@@ -38,7 +37,8 @@ stub_msg = """ | |||
38 | This stand-in version of %s is not yet fully capable of emulating | 37 | This stand-in version of %s is not yet fully capable of emulating |
39 | the real version from the GNU texinfo suite. If you see this message, file a | 38 | the real version from the GNU texinfo suite. If you see this message, file a |
40 | bug report with details on the recipe that failed. | 39 | bug report with details on the recipe that failed. |
41 | """ % this_binary | 40 | Invoked 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," |