Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(523)

Unified Diff: ports/fftw/build.sh

Issue 1556933002: Remove redundant pnacl translations (Closed) Base URL: https://chromium.googlesource.com/webports.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ports/fftw/build.sh
diff --git a/ports/fftw/build.sh b/ports/fftw/build.sh
index 4df7ced6d77ab61466bc108f6df3b13174cc07e0..24337a93a493ac6e766c25d4c77d6dceb816d52a 100644
--- a/ports/fftw/build.sh
+++ b/ports/fftw/build.sh
@@ -30,16 +30,15 @@ ConfigureStep() {
}
TestStep() {
+ LogExecute make check EXEEXT=
+
if [ ${NACL_ARCH} = "pnacl" ]; then
- for arch in x86-32 x86-64; do
+ for arch in x86-32 arm; do
for exe in ${EXECUTABLES}; do
local exe_noext=${exe%.*}
- WriteLauncherScriptPNaCl ${exe_noext} \
- $(basename ${exe_noext}.${arch}.nexe) ${arch}
+ WriteLauncherScript ${exe_noext} $(basename ${exe_noext}.${arch}.nexe)
done
- make check EXEEXT=
+ LogExecute make check EXEEXT=
done
- else
- make check EXEEXT=
fi
}

Powered by Google App Engine
This is Rietveld 408576698