diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-05-04 17:53:29 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-05-04 17:56:43 -0700 |
commit | a6c02a86675554ee8b9a5d3278376b5053e824b9 (patch) | |
tree | 0b094ebe7160e206bbc08b17f0a06750044a0191 /Makefile.am | |
parent | cad9e93a84d1f42777cf1c2a50f30f482b0d0a9e (diff) |
Makefile.am: swap order of ACLOCAL_AMFLAGS
Causes autoreconf to fail with:
libtoolize: error: AC_CONFIG_MACRO_DIRS([m4]) conflicts with ACLOCAL_AMFLAGS
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 44afe70..5dffe92 100644 --- a/Makefile.am +++ b/Makefile.am @@ -18,7 +18,7 @@ # IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} -I m4 +ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} SUBDIRS = src |