summaryrefslogtreecommitdiff
path: root/main/lzo/util/overlap.sh
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2017-12-28 00:30:40 +0100
committerArne Schwabe <arne@rfc2549.org>2017-12-28 00:30:40 +0100
commit2b2dee6586048e62d066a3ea7b761649828b3aff (patch)
treee4afa9c4e225cf808a179dac57be769f63c60d4d /main/lzo/util/overlap.sh
parentb14d9bdfa98b85b9f836d73fbcfc65582a92184a (diff)
Add OpenVPN3 to build, change build system to cmake
Diffstat (limited to 'main/lzo/util/overlap.sh')
-rw-r--r--main/lzo/util/overlap.sh35
1 files changed, 0 insertions, 35 deletions
diff --git a/main/lzo/util/overlap.sh b/main/lzo/util/overlap.sh
deleted file mode 100644
index 439844e7..00000000
--- a/main/lzo/util/overlap.sh
+++ /dev/null
@@ -1,35 +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-2017 Markus Franz Xaver Johannes Oberhumer
-#
-
-OVERLAP="./examples/overlap"
-for d in ./examples .; do
- for ext in "" .exe .out; do
- if test -f "$d/overlap$ext" && test -x "$d/overlap$ext"; then
- OVERLAP="$d/overlap$ext"
- break 2
- fi
- done
-done
-
-dir="${1-.}"
-
-TMPFILE="/tmp/lzo_$$.tmp"
-rm -f "$TMPFILE"
-(find "$dir/." -type f -print0 | LC_ALL=C sort -z > "$TMPFILE") || true
-
-cat "$TMPFILE" | xargs -0 -r "$OVERLAP"
-
-rm -f "$TMPFILE"
-echo "Done."
-exit 0
-
-# vim:set ts=4 sw=4 et: