Whamcloud - gitweb
LU-3466 iokit: Make lustre-iokit a subpackage of lustre
[fs/lustre-release.git] / lustre-iokit / autogen.sh
diff --git a/lustre-iokit/autogen.sh b/lustre-iokit/autogen.sh
deleted file mode 100644 (file)
index b491fce..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-
-fatal() {
-    local msg="$1"
-
-    echo "FATAL: $msg"
-    exit 1
-}
-
-run_cmd() {
-    local cmd="$1"
-
-    echo "Running $cmd..."
-    $cmd || fatal "$cmd failed!"
-}
-
-run_cmd ${ACLOCAL:-aclocal}
-run_cmd "${AUTOMAKE:-automake} -a -c"
-run_cmd autoconf
-
-echo "Finished.  Ready for ./configure ..."