OLD | NEW |
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 Loading... |
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 } | |
OLD | NEW |