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

Unified Diff: libraries/lua-5.1.4/nacl-lua-5.1.4.sh

Issue 11885025: Allow re-targeting of naclports install (Closed) Base URL: http://naclports.googlecode.com/svn/trunk/src
Patch Set: Created 7 years, 11 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: libraries/lua-5.1.4/nacl-lua-5.1.4.sh
diff --git a/libraries/lua-5.1.4/nacl-lua-5.1.4.sh b/libraries/lua-5.1.4/nacl-lua-5.1.4.sh
index f633004c9e3a6c4c041ff5cf8788ef582bd6b00d..2485df665e0ca34c7d1ca115a2cf50a937051bfb 100755
--- a/libraries/lua-5.1.4/nacl-lua-5.1.4.sh
+++ b/libraries/lua-5.1.4/nacl-lua-5.1.4.sh
@@ -21,11 +21,11 @@ source ../../build_tools/common.sh
CustomBuildStep() {
ChangeDir ${NACL_PACKAGES_REPOSITORY}/${PACKAGE_NAME}
- make "CC=${NACLCC}" "PLAT=generic" "INSTALL_TOP=${NACL_SDK_USR}" clean
+ make "CC=${NACLCC}" "PLAT=generic" "INSTALL_TOP=${NACLPORTS_PREFIX}" clean
PATH=${NACL_BIN_PATH}:${PATH} \
- make "CC=${NACLCC}" "PLAT=generic" "INSTALL_TOP=${NACL_SDK_USR}" "MYLIBS=-lnosys"
+ make "CC=${NACLCC}" "PLAT=generic" "INSTALL_TOP=${NACLPORTS_PREFIX}" "MYLIBS=-lnosys"
# TODO: side-by-side install
- make "CC=${NACLCC}" "PLAT=generic" "INSTALL_TOP=${NACL_SDK_USR}" install
+ make "CC=${NACLCC}" "PLAT=generic" "INSTALL_TOP=${NACLPORTS_PREFIX}" install
}

Powered by Google App Engine
This is Rietveld 408576698