aboutsummaryrefslogtreecommitdiff
path: root/build/tools
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@android.com>2009-05-07 14:35:27 -0700
committerXavier Ducrohet <xav@android.com>2009-05-07 14:35:27 -0700
commit8ef7a815e39c0bcbd1ee4b48e96f7fd0ffe9cdea (patch)
tree92322fdef94239a46eb0e0b2960edf48145ee1a5 /build/tools
parent649d1bd322c9717fb7f2cd53493b0adfaf20c75a (diff)
downloadndk-8ef7a815e39c0bcbd1ee4b48e96f7fd0ffe9cdea.tar.gz
Fix the NDK packaging script to use git ls-files instead of git-ls-files
Diffstat (limited to 'build/tools')
-rwxr-xr-xbuild/tools/make-release.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/tools/make-release.sh b/build/tools/make-release.sh
index a6c228c9e..1f1e802eb 100755
--- a/build/tools/make-release.sh
+++ b/build/tools/make-release.sh
@@ -21,7 +21,7 @@ PREBUILT_PREFIX=android-ndk-prebuilt-20090323
PREBUILT_SYSTEMS="linux-x86 linux-x86_64 darwin-x86 windows"
# the list of git files to copy into the archives
-GIT_FILES=`cd $NDK_ROOT_DIR && git-ls-files`
+GIT_FILES=`cd $NDK_ROOT_DIR && git ls-files`
# temporary directory used for packaging
TMPDIR=/tmp/ndk-release