Browse code

Autoconf configure.ac adjustment. Move AC_CONFIG_AUX_DIR([config]) after AC_INIT and before all others.

Micah Snyder authored on 2019/05/09 22:02:56
Showing 1 changed files
... ...
@@ -20,16 +20,18 @@ dnl   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20 20
 dnl   MA 02110-1301, USA.
21 21
 
22 22
 AC_PREREQ([2.59])
23
+
23 24
 dnl For a release change [devel] to the real version [0.xy]
24 25
 dnl also change VERSION below
25 26
 AC_INIT([ClamAV], [0.102.0-devel], [https://bugzilla.clamav.net/], [clamav], [https://www.clamav.net/])
26 27
 
28
+dnl put configure auxiliary into config
29
+AC_CONFIG_AUX_DIR([config])
30
+
27 31
 dnl enable C++
28 32
 AC_PROG_CXX()
29 33
 
30 34
 AH_BOTTOM([#include "platform.h"])
31
-dnl put configure auxiliary into config
32
-AC_CONFIG_AUX_DIR([config])
33 35
 AC_CONFIG_HEADERS([clamav-config.h libclammspack/config.h:libclammspack/config.h.in])
34 36
 
35 37
 dnl safety check, this used to be a parameter to AC_INIT