summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2010-04-12 13:05:48 -0400
committerPeter Hutterer <peter.hutterer@who-t.net>2010-04-13 10:26:41 +1000
commitc36de6947dfb23946926d041aa08d482ffd96a0f (patch)
tree8b6deaeca812a9c5531dba5bf26cb4a194b7f64a /configure.ac
parent2795fc26832ee31546216f07ff5f3616cb2dea95 (diff)
downloadxf86-input-wacom-c36de6947dfb23946926d041aa08d482ffd96a0f.tar.gz
config: disable inadvertently re-enabled static library creation
AC_DISABLE_STATIC must be places before AC_PROG_LIBTOOL, requirement which is not documented in libtool. This will prevent the creation of src/.libs/wacom_drv.a Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 21fa392..bbf559c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -35,8 +35,8 @@ AM_INIT_AUTOMAKE([foreign dist-bzip2])
AM_MAINTAINER_MODE
# Initialize libtool
-AC_PROG_LIBTOOL
AC_DISABLE_STATIC
+AC_PROG_LIBTOOL
# Checks for programs.
AC_PROG_CC