diff options
author | Jeremy Henty <onepoint@starurchin.org> | 2011-01-05 08:22:38 +0000 |
---|---|---|
committer | Jeremy Henty <onepoint@starurchin.org> | 2011-01-05 08:22:38 +0000 |
commit | 3d82918a22a81d46d654f707645e1fcf6481ca53 (patch) | |
tree | 645683a25bd430bc431c8a29248f0da66d88985b /configure.in | |
parent | cd363fe38abfb68f0394b616321b68b67c73fc8f (diff) |
configure.in: move AC_CANONICAL_SYSTEM to fix an autoconf warning.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 03e2cf4d..b8644437 100644 --- a/configure.in +++ b/configure.in @@ -1,13 +1,14 @@ dnl Process this file with aclocal, autoconf and automake. AC_INIT([dillo], [2.2]) -AM_INIT_AUTOMAKE -AC_CONFIG_SRCDIR([src/dillo.cc]) -AC_CONFIG_HEADERS([config.h]) dnl Detect the canonical host and target build environment AC_CANONICAL_SYSTEM +AM_INIT_AUTOMAKE +AC_CONFIG_SRCDIR([src/dillo.cc]) +AC_CONFIG_HEADERS([config.h]) + sysconfdir=${sysconfdir}/${PACKAGE} dnl Options |