summarylogtreecommitdiffstats
path: root/kaitai-struct-compiler
diff options
context:
space:
mode:
Diffstat (limited to 'kaitai-struct-compiler')
-rwxr-xr-xkaitai-struct-compiler12
1 files changed, 0 insertions, 12 deletions
diff --git a/kaitai-struct-compiler b/kaitai-struct-compiler
deleted file mode 100755
index bb13512569d7..000000000000
--- a/kaitai-struct-compiler
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-LIBS=/usr/share/java/kaitai-struct-compiler/*
-LIBS_STR=""
-
-for f in $LIBS
-do
- LIBS_STR="$LIBS_STR:$f"
-done
-
-java -cp "$LIBS_STR" io.kaitai.struct.Main "$@"
-