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

Unified Diff: ports/sdlquake/Makefile

Issue 1804293003: Add support for new pnacl native toolchain driver (Closed) Base URL: https://chromium.googlesource.com/webports.git@master
Patch Set: Fix according to Brad's comments Created 4 years, 8 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/sdlquake/Makefile
diff --git a/ports/sdlquake/Makefile b/ports/sdlquake/Makefile
index 47a9042c82ffe1998c969855d7c548e6fcf94883..1783b89b69a636d1ea396b61e7d167ba6957c33f 100644
--- a/ports/sdlquake/Makefile
+++ b/ports/sdlquake/Makefile
@@ -65,7 +65,11 @@ quake_debug${EXEEXT}: $(OBJECTS)
$(RUN_CCLD)$(CXX) $(LDFLAGS) $^ -o $@
quake${EXEEXT}: quake_debug${EXEEXT}
+ifneq ($(NACL_ARCH),le32)
$(RUN_STRIP)$(STRIP) -o $@ $<
+else
+ cp $< $@
+endif
clean:
rm -f build/*.o *.${EXEEXT}
« make_all.sh ('K') | « ports/sdl2-tests/nacl.patch ('k') | ports/stoken/build.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698