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:35:27 -07:00
parent 5c569078a2
commit e0de1bc940

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