commit 1d98f8f941789c715ca2c65b590fc93a29fca082
Author: Phil Krylov <phil.krylov@gmail.com>
Date: Thu Sep 15 16:29:02 2016 +0200
Fix autoreconf misparsing ACLOCAL_AMFLAGS
diff --git Makefile.am Makefile.am
index ffc073c..c462439 100644
|
|
|
1 | 1 | # Makefile.am - Top level automakefile for libuninameslist |
2 | 2 | |
3 | | ACLOCAL_AMFLAGS = -I m4 $(ACLOCAL_FLAGS) |
| 3 | # The braces around ACLOCAL_FLAGS below instead of parentheses are intentional! |
| 4 | # Otherwise autoreconf misparses the line. |
| 5 | ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} |
4 | 6 | |
5 | 7 | AM_CFLAGS = $(WCFLAGS) $(UN_CFLAGS) |
6 | 8 | AM_LDFLAGS = $(WUNLIB) $(UN_LIB) -no-undefined |