am e0de1bc: Fix the NDK packaging script to use git ls-files instead of

Merge commit 'e0de1bc940255721ebef6fffd8b70d9801ee3a4d'

* commit 'e0de1bc940255721ebef6fffd8b70d9801ee3a4d':
  Fix the NDK packaging script to use git ls-files instead of git-ls-files
This commit is contained in:
Xavier Ducrohet
2009-05-07 14:40:40 -07:00
committed by The Android Open Source Project

View File

@@ -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