Comment #13 on issue 19862 by sgbeal: chrome fail to start on debian squeeze (exec: 37: -a: not found) http://code.google.com/p/chromium/issues/detail?id=19862
The "problem" is that bash behaves like the Bourne Shell when it is called with the name "sh", and the Bourne shell doesn't have the "-a" option (it doesn't have a lot of things, for that matter). Be aware, though, that not all Linuces use bash by default - some embedded ones use ash or zsh, but they are always linked to /bin/sh for compatibility. The point is, it's more portable to use /bin/sh but remove the -a option altogether. -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings --~--~---------~--~----~------------~-------~--~----~ Automated mail from issue updates at http://crbug.com/ Subscription options: http://groups.google.com/group/chromium-bugs -~----------~----~----~----~------~----~------~--~---
