diff options
author | Parménides GV <parmegv@sdf.org> | 2014-04-08 12:04:17 +0200 |
---|---|---|
committer | Parménides GV <parmegv@sdf.org> | 2014-04-08 12:04:17 +0200 |
commit | 3c3421afd8f74a3aa8d1011de07a8c18f9549210 (patch) | |
tree | 49d52344661c23d7268b8ea69466a1cfef04bf8b /app/lzo/util/overlap.sh | |
parent | 5fc5d37330d3535a0f421632694d1e7918fc22d7 (diff) |
Rename app->bitmask_android
This way, gradle commands generate apks correctly named.
Diffstat (limited to 'app/lzo/util/overlap.sh')
-rw-r--r-- | app/lzo/util/overlap.sh | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/app/lzo/util/overlap.sh b/app/lzo/util/overlap.sh deleted file mode 100644 index 727c86f1..00000000 --- a/app/lzo/util/overlap.sh +++ /dev/null @@ -1,27 +0,0 @@ -#! /bin/sh -set -e - -# -# usage: util/overlap.sh [directory] -# -# This script runs the overlap example program on a complete directory tree. -# -# Copyright (C) 1996-2011 Markus Franz Xaver Johannes Oberhumer -# - -OVERLAP="overlap" -test -x ./examples/overlap && OVERLAP="./examples/overlap" -test -x ./overlap.exe && OVERLAP="./overlap.exe" - -dir="${*-.}" - -TMPFILE="/tmp/lzo_$$.tmp" -rm -f $TMPFILE -(find $dir/ -type f -print0 > $TMPFILE) || true - -cat $TMPFILE | xargs -0 -r $OVERLAP - -rm -f $TMPFILE -echo "Done." -exit 0 - |