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

Unified Diff: ports/gcc/build.sh

Issue 1285953002: Switch devenv to use pkg packages (Closed) Base URL: https://chromium.googlesource.com/external/naclports.git@toolchain_install
Patch Set: Created 5 years, 4 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/gcc/build.sh
diff --git a/ports/gcc/build.sh b/ports/gcc/build.sh
index 2a7238c1d7cadf3318d3bc6dc51f900c594b106b..1585ab488612fbd4e6efbb0a22d408511abb1e8a 100644
--- a/ports/gcc/build.sh
+++ b/ports/gcc/build.sh
@@ -24,18 +24,3 @@ ConfigureStep() {
Remove $cache_file
done
}
-
-PublishStep() {
- MakeDir ${PUBLISH_DIR}
- for nexe in gcc/xgcc gcc/g++ gcc/cpp gcc/cc1 gcc/cc1plus gcc/collect2; do
- local name=$(basename $nexe | sed 's/xgcc/gcc/')
- cp ${nexe} ${PUBLISH_DIR}/${name}_${NACL_ARCH}${NACL_EXEEXT}
-
- pushd ${PUBLISH_DIR}
- LogExecute python ${NACL_SDK_ROOT}/tools/create_nmf.py \
- ${PUBLISH_DIR}/${name}_*${NACL_EXEEXT} \
- -s . \
- -o ${name}.nmf
- popd
- done
-}

Powered by Google App Engine
This is Rietveld 408576698