> /bin/sh: Illegal option -p > gmake: *** [package.mak] Erreur 2 > make: *** [encodedecode_package/package/cfg/pkg_x470MV.c] Erreur 2 > > I updated to the DVEVM 1.10.01 version today, but the problem has not been > solved. > I use the latest ubuntu kernel, and I wonder if there are some compatibilit= > y > problems, and if so, what must be done ?
I had the same problem. The problem is that -p is a bash-only option, and on debian, /bin/sh is actually dash (Debian Almquist Shell). This is one of my pet peeves - if people really mean "bash" and not "sh" and they are going to use bash-isms in their code, they should just put #!/bin/bash in their script! bash != sh The easy fix is to just link /bin/sh to bash. But the right answer to get to TI to stop that sloppy practice. - martin _______________________________________________ Davinci-linux-open-source mailing list [email protected] http://linux.davincidsp.com/mailman/listinfo/davinci-linux-open-source
