summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorArmin K <krejzi@email.com>2013-03-15 18:22:10 +0100
committerXiang, Haihao <haihao.xiang@intel.com>2013-03-19 09:24:11 +0800
commit825a6e1ddac6c207756ef5b6340d0e6acfc14d58 (patch)
tree074a07a85dcffbcb8907a3bedbc90ca69a516131 /autogen.sh
parent82d6940694c7a650642ccb6d68bf01b70dba4dcc (diff)
downloadlibva-intel-driver-825a6e1ddac6c207756ef5b6340d0e6acfc14d58.tar.gz
Automake 1.13 fixups
error: 'AM_CONFIG_HEADER': this macro is obsolete. You should use the 'AC_CONFIG_HEADERS' macro instead. warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') Added NOCONFIGURE check to autogen.sh
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 9c2f4f66..f5164d81 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,3 +1,7 @@
#! /bin/sh
+
autoreconf -v --install
-./configure "$@"
+
+if test -z "$NOCONFIGURE"; then
+ ./configure "$@"
+fi