Skip to content

Commit 0f8f7d3

Browse files
author
Rik
committed
configure.ac: Group Autoconf initialization statements at beginning of file.
* configure.ac: Move AC_CONFIG_AUX_DIR() to front of file. Change to using AC_CONFIG_MACRO_DIRS and move to front of file.
1 parent fbd88b8 commit 0f8f7d3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

configure.ac

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,10 @@ dnl
2727

2828
### Initialize Autoconf
2929
AC_PREREQ([2.65])
30-
AC_INIT([GNU Octave], [11.0.0], [https://bugs.octave.org], [octave],
31-
[https://www.octave.org])
30+
AC_INIT([GNU Octave], [11.0.0],
31+
[https://bugs.octave.org], [octave], [https://www.octave.org])
32+
AC_CONFIG_MACRO_DIRS([m4])
33+
AC_CONFIG_AUX_DIR([build-aux])
3234

3335
### Declare version numbers
3436

@@ -78,8 +80,6 @@ dnl AC_REVISION field whenever configure.ac is modified.
7880
dnl AC_REVISION($Revision: 1.603 $)
7981
AC_CONFIG_SRCDIR([libinterp/octave.cc])
8082
AC_CONFIG_HEADERS([config.h:config.in.h])
81-
AC_CONFIG_AUX_DIR([build-aux])
82-
AC_CONFIG_MACRO_DIR([m4])
8383

8484
### Initialize Automake
8585
AM_INIT_AUTOMAKE([1.14 -Wno-portability -Wno-override tar-ustar subdir-objects dist-lzip dist-xz])

0 commit comments

Comments
 (0)