| Index: ports/devil/build.sh
|
| diff --git a/ports/devil/build.sh b/ports/devil/build.sh
|
| index b1049c9fe07fa2991e8db2a8956cc18d36bb17b2..51ce2e7e4331f80f750fc0bb2ae66cbed377b9dc 100644
|
| --- a/ports/devil/build.sh
|
| +++ b/ports/devil/build.sh
|
| @@ -11,20 +11,13 @@ TestStep() {
|
|
|
| if [ ${NACL_ARCH} == "pnacl" ]; then
|
| # Run once for each architecture.
|
| - local pexe=test/testil
|
| - local script=${pexe}.sh
|
|
|
| - TranslateAndWriteLauncherScript ${pexe} x86-32 ${pexe}.x86-32.nexe ${script}
|
| + WriteLauncherScript test/testil testil.x86-32.nexe
|
| (cd test && make check)
|
|
|
| - TranslateAndWriteLauncherScript ${pexe} x86-64 ${pexe}.x86-64.nexe ${script}
|
| + WriteLauncherScript test/testil testil.x86-64.nexe
|
| (cd test && make check)
|
| else
|
| - local nexe=test/testil
|
| - local script=${nexe}.sh
|
| -
|
| - WriteLauncherScript ${script} ${nexe}
|
| -
|
| (cd test && make check)
|
| fi
|
| }
|
|
|