diff options
Diffstat (limited to 'recipes')
| -rw-r--r-- | recipes/ti/ti-eula-unpack.inc | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/recipes/ti/ti-eula-unpack.inc b/recipes/ti/ti-eula-unpack.inc index 947ca143ea..a812a85ec5 100644 --- a/recipes/ti/ti-eula-unpack.inc +++ b/recipes/ti/ti-eula-unpack.inc @@ -41,10 +41,11 @@ python ti_bin_do_unpack() { # Run the InstallJammer binary and accept the EULA filename = "HOME=%s ./%s --mode console" % (workdir, binfile) - # Test executable by printing installer version - if os.system(filename + " --version") != 0: - print "ERROR: ti-eula-unpack: failed to execute binary installer" - raise bb.build.FuncFailed() + # Test executable by printing installer version or help screen (--version currently broken for some installers) + # - this is currently broken in some IJ installers - comment out for now + #if os.system(filename + " --version") != 0: + # print "ERROR: ti-eula-unpack: failed to execute binary installer" + # raise bb.build.FuncFailed() f = os.popen(filename,'w') for cmd in cmd_list: |
