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

Unified Diff: ports/geturl/Makefile

Issue 1417223003: Switch from using 'nacl_main' to 'main' entry point (Closed) Base URL: https://chromium.googlesource.com/external/naclports.git@master
Patch Set: Created 5 years, 2 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/geturl/Makefile
diff --git a/ports/geturl/Makefile b/ports/geturl/Makefile
index 03c71e87f3a00b13d2302a3873e68606651dbfb0..37f6cb0a224247f984dcb9751f9ce442217554d0 100644
--- a/ports/geturl/Makefile
+++ b/ports/geturl/Makefile
@@ -8,10 +8,8 @@ CPPFLAGS += -Wall -Werror
all: $(GETURL)
-EXTRA_LIBS = ${NACL_CLI_MAIN_LIB_CPP}
-
$(GETURL): geturl.cc
- $(NACLCXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ $^ $(EXTRA_LIBS)
+ $(NACLCXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS)
clean:
rm -f $(GETURL)

Powered by Google App Engine
This is Rietveld 408576698