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

Side by Side Diff: ports/git/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 unified diff | Download patch
OLDNEW
1 # Copyright (c) 2013 The Native Client Authors. All rights reserved. 1 # Copyright (c) 2013 The Native Client Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 EXECUTABLES="git git-remote-http git-remote-https" 5 EXECUTABLES="git git-remote-http git-remote-https"
6 6
7 BUILD_DIR=${SRC_DIR} 7 BUILD_DIR=${SRC_DIR}
8 export EXTLIBS="${NACL_CLI_MAIN_LIB}" 8 export EXTLIBS="${NACL_CLI_MAIN_LIB}"
9 9
10 if [ "${NACL_SHARED}" != "1" ]; then 10 if [ "${NACL_SHARED}" != "1" ]; then
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 export CCLD=${CXX} 59 export CCLD=${CXX}
60 DefaultInstallStep 60 DefaultInstallStep
61 # Remove some of the git symlinks to save some space (since symlinks are 61 # Remove some of the git symlinks to save some space (since symlinks are
62 # currnely only supported via file copying). 62 # currnely only supported via file copying).
63 for f in ${DESTDIR}${PREFIX}/libexec/git-core/*; do 63 for f in ${DESTDIR}${PREFIX}/libexec/git-core/*; do
64 if [ -L $f ]; then 64 if [ -L $f ]; then
65 Remove $f 65 Remove $f
66 fi 66 fi
67 done 67 done
68 } 68 }
69
70 PublishStep() {
71 PublishByArchForDevEnv
72 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698