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

Unified Diff: libraries/tinyxml/nacl-tinyxml.sh

Issue 11885025: Allow re-targeting of naclports install (Closed) Base URL: http://naclports.googlecode.com/svn/trunk/src
Patch Set: rebase 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/tinyxml/nacl-tinyxml.sh
diff --git a/libraries/tinyxml/nacl-tinyxml.sh b/libraries/tinyxml/nacl-tinyxml.sh
index b2606389560a79f4551ec685c68a1299dee985e6..5bd627aa4fb9a6cf53bada1c4dd42d5c3ae6e0f8 100755
--- a/libraries/tinyxml/nacl-tinyxml.sh
+++ b/libraries/tinyxml/nacl-tinyxml.sh
@@ -30,13 +30,13 @@ CustomBuildStep() {
CustomInstallStep() {
# copy libs and headers manually
- Banner "Installing ${PACKAGE_NAME} to ${NACL_SDK_USR}"
- ChangeDir ${NACL_SDK_USR_INCLUDE}
+ Banner "Installing ${PACKAGE_NAME} to ${NACLPORTS_PREFIX}"
+ ChangeDir ${NACLPORTS_INCLUDE}
Remove ${PACKAGE_NAME}
MakeDir ${PACKAGE_NAME}
readonly THIS_PACKAGE_PATH=${NACL_PACKAGES_REPOSITORY}/${PACKAGE_NAME}
cp ${THIS_PACKAGE_PATH}/*.h ${PACKAGE_NAME}/
- ChangeDir ${NACL_SDK_USR_LIB}
+ ChangeDir ${NACLPORTS_LIBDIR}
cp ${THIS_PACKAGE_PATH}/*.a .
DefaultTouchStep
}

Powered by Google App Engine
This is Rietveld 408576698