diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2009-03-03 18:28:16 -0800 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-03-03 18:28:16 -0800 |
commit | 82ea7a177797b844b252effea5c7c7c5d63ea4ac (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /scripts/sdk_clean.sh | |
parent | c9432be76d50a527da232d518f633add2f76242b (diff) | |
download | sdk-82ea7a177797b844b252effea5c7c7c5d63ea4ac.zip sdk-82ea7a177797b844b252effea5c7c7c5d63ea4ac.tar.gz sdk-82ea7a177797b844b252effea5c7c7c5d63ea4ac.tar.bz2 |
auto import from //depot/cupcake/@135843
Diffstat (limited to 'scripts/sdk_clean.sh')
-rwxr-xr-x | scripts/sdk_clean.sh | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/scripts/sdk_clean.sh b/scripts/sdk_clean.sh deleted file mode 100755 index 467d560..0000000 --- a/scripts/sdk_clean.sh +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/bash -# -# This script processes a set of files given as arguments as sample code to be released -# in the SDK. -# -# Note that these files are modified in-place. -# - -DIR=$1 - -# -# Remove BEGIN_INCLUDE and END_INCLUDE lines used by the javadoc. -# -# This does it by replacing these lines with blank lines so line numbers aren't -# changed in the process, making it easier to match 3rd party complaints/questions -# with the source tree. -# -# sed on Mac OS takes -i SUFFIX and sed on Linux takes -iSUFFIX -# -if [ $HOST_OS = darwin ] ; then -find $DIR -name "*.java" -o -name "*.xml" | xargs -n 1 \ - sed \ - -e "s/.*BEGIN_INCLUDE(.*//" \ - -e "s/.*END_INCLUDE(.*//" \ - -i "" -else -find $DIR -name "*.java" -o -name "*.xml" | xargs -n 1 \ - sed \ - -e "s/.*BEGIN_INCLUDE(.*//" \ - -e "s/.*END_INCLUDE(.*//" \ - -i -fi - -# -# Fix up the line endings of all text files -# -if [ $HOST_OS = windows ] ; then - ENDING_TYPE=dos -else - ENDING_TYPE=unix -fi -find $DIR -name "*.aidl" -o -name "*.css" -o -name "*.html" -o -name "*.java" \ - -o -name "*.js" -o -name "*.prop" -o -name "*.py" \ - -o -name "*.template" -o -name "*.txt" -o -name "*.windows" \ - -o -name "*.xml" \ - | xargs $HOST_OUT_EXECUTABLES/line_endings $ENDING_TYPE - - |