summaryrefslogtreecommitdiff
path: root/DevIL/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'DevIL/autogen.sh')
-rwxr-xr-xDevIL/autogen.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/DevIL/autogen.sh b/DevIL/autogen.sh
deleted file mode 100755
index 7bcf6e48..00000000
--- a/DevIL/autogen.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-# Author: originally Meloni Dario <mellon85 -at- gmail.com>
-# Now Matěj Týč <bubla@users.sf.net>
-
-# use the -v flag to get all the output
-if [ "$1" = "-v" ] ; then
- VERBOSE=yes
-fi
-
-log() {
- if [ "$VERBOSE" = "yes" ] ; then
- $1
- output=""
- else
- output=$($1 2>&1)
- fi
-
- # show output only in case of errors
- if [ $? -ne 0 ] ; then
- echo $output
- exit 1
- fi
-}
-
-log "autoreconf -i"
-exit 0
-