summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Velikov <emil.l.velikov@gmail.com>2017-03-13 19:36:22 +0000
committerEmil Velikov <emil.l.velikov@gmail.com>2017-03-15 10:02:32 +0000
commit24830fe38257c6b0df8fa86acfa8cdb08eb41dcf (patch)
tree85260e1f2e465d5886d53f1d4f4d48f3c5d5dadb
parentf171ad4c1c722b5187ac27d8e4b71f42ccd8e207 (diff)
configure.ac: remove useless AC_CONFIG_* macros
Namely: AC_CONFIG_SRCDIR - it's used to "help" people who deliberatelly override --srcdir. Nobody should be doing this to begin with, so just let them get what they're asking for. AC_CONFIG_HEADERS - we don't have any conditionals, function or macro checks. Hence we don't need the header. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
-rw-r--r--configure.ac2
1 files changed, 0 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 785cd76..9b92d0e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -24,8 +24,6 @@
# Initialize Autoconf
AC_PREREQ([2.60])
AC_INIT([kmscube], [0.0.1], [https://cgit.freedesktop.org/mesa/kmscube/], [kmscube])
-AC_CONFIG_SRCDIR([Makefile.am])
-AC_CONFIG_HEADERS([config.h])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])