HomeSort by relevance Sort by last modified time
    Searched refs:DEST (Results 1 - 25 of 36) sorted by null

1 2

  /external/nanopb-c/tools/
make_linux_package.sh 10 DEST=dist/$VERSION
12 rm -rf $DEST
13 mkdir -p $DEST
16 git archive HEAD | tar x -C $DEST
19 make -BC $DEST/generator/proto
22 cp $DEST/generator/nanopb_generator.py $DEST/generator/protoc-gen-nanopb.py
25 ( cd $DEST/generator; bbfreeze nanopb_generator.py protoc-gen-nanopb.py )
26 mv $DEST/generator/dist $DEST/generator-bi
    [all...]
make_mac_package.sh 12 DEST=dist/$VERSION
14 rm -rf $DEST
15 mkdir -p $DEST
18 git archive HEAD | tar x -C $DEST
21 make -BC $DEST/generator/proto
24 ( cd $DEST/generator; pyinstaller nanopb_generator.py )
25 mv $DEST/generator/dist/nanopb_generator $DEST/generator-bin
28 rm -rf $DEST/generator/dist $DEST/generator/build $DEST/generator/nanopb_generator.spe
    [all...]
make_windows_package.sh 11 DEST=dist/$VERSION
13 rm -rf $DEST
14 mkdir -p $DEST
17 git archive HEAD | tar x -C $DEST
20 make -BC $DEST/generator/proto
23 cp $DEST/generator/nanopb_generator.py $DEST/generator/protoc-gen-nanopb.py
26 ( cd $DEST/generator; bbfreeze nanopb_generator.py protoc-gen-nanopb.py )
27 mv $DEST/generator/dist $DEST/generator-bi
    [all...]
  /external/chromium_org/chrome/browser/mac/
install.sh 32 echo "usage: ${0} SRC DEST" >& 2
37 DEST=${2}
45 # Make sure that DEST is an absolute path and that it doesn't yet exist.
46 if [ -z "${DEST}" ] || [ "${DEST:0:1}" != "/" ] || [ -e "${DEST}" ] ; then
47 echo "${0}: destination ${DEST} sanity check failed" >& 2
52 rsync -lrpt "${SRC}/" "${DEST}"
61 "${LSREGISTER}" -f "${DEST}"
86 if [ "${DEST:0:14}" = "/Applications/" ] &
    [all...]
  /external/e2fsprogs/util/
install-symlink.in 40 DEST="$2"
48 if ! echo $DEST | grep -q ^/ ; then
49 echo $DEST: Destination pathname must be absolute
58 $RM -f "$DESTDIR$DEST"
61 $LN_S "$DESTDIR$SRC" "$DESTDIR$DEST"
65 if test $(dirname "$SRC") = $(dirname "$DEST") ; then
66 $LN_S "$(basename "$SRC")" "$DESTDIR$DEST"
71 TOP_DEST=$(echo $DEST | awk -F/ '{print $2}')
84 $LN_S "$SRC" "$DESTDIR$DEST"
86 $LN_S "$DESTDIR$SRC" "$DESTDIR$DEST"
    [all...]
  /external/chromium_org/third_party/mesa/src/bin/
minstall 32 # Last cmd line arg is the dest dir
37 # Loop over args, moving them to DEST directory
41 # stop, don't want to install $DEST into $DEST
45 DEST=$DESTDIR
54 DEST="$DEST/../bin"
80 # Go to $DEST and make the link
81 cd "$DEST" # pushd
89 if ! cmp -s $FILE $DEST/`basename $FILE`; the
    [all...]
  /external/mesa3d/bin/
minstall 32 # Last cmd line arg is the dest dir
37 # Loop over args, moving them to DEST directory
41 # stop, don't want to install $DEST into $DEST
45 DEST=$DESTDIR
54 DEST="$DEST/../bin"
80 # Go to $DEST and make the link
81 cd "$DEST" # pushd
89 if ! cmp -s $FILE $DEST/`basename $FILE`; the
    [all...]
  /frameworks/base/data/sounds/
generate-all-audio.sh 47 while read DEST
51 grep \\\$\(LOCAL_PATH\).*:$DEST |
57 echo :$DEST\ \\ >> AllAudio.mk
  /external/chromium_org/chrome/installer/mac/
keystone_install_test.sh 72 DEST="${TEMPDIR}"/Dest.app
73 rm -rf "${DEST}"
74 mkdir -p "${DEST}"/Contents
75 defaults write "${DEST}/Contents/Info" KSVersion 0
86 echo " xc=<KSPathExistenceChecker:0x45 path=${DEST}>"
95 DEST="${TEMPDIR}"/Dest.app
96 rm -rf "${DEST}"
97 defaults write "${DEST}/Contents/Info" CFBundleShortVersionString
    [all...]
  /sdk/eclipse/scripts/
create_all_symlinks.sh 93 function cpfile { # $1=source $2=dest $3=optional dest filename
102 function cpfile { # $1=source $2=dest $3=optional dest filename
114 DEST="sdk/eclipse/scripts"
343 DEST=""
346 DEST="${SRC:2}"
347 mkdir -vp "$DEST"
380 if [[ ! -d "$DEST" ]]; then
381 die "Invalid cp_file dest directory: $DEST
    [all...]
  /external/eigen/test/
product_mmtr.cpp 12 #define CHECK_MMTR(DEST, TRI, OP) { \
13 ref2 = ref1 = DEST; \
14 DEST.template triangularView<TRI>() OP; \
17 VERIFY_IS_APPROX(DEST,ref2); \