From: Sergey Poznyakoff Date: Mon, 3 Dec 2012 21:54:19 +0000 (+0200) Subject: Bugfix. X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Ftar;a=commitdiff_plain;h=4bfa82acd5c45529f774dbd45bb166573d341efe Bugfix. * tests/Makefile.am: Fix double AM_CPPFLAGS --- diff --git a/tests/Makefile.am b/tests/Makefile.am index f04ee39..401b748 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -220,6 +220,11 @@ check_PROGRAMS = genfile genfile_SOURCES = genfile.c argcv.c argcv.h localedir = $(datadir)/locale -AM_CPPFLAGS = -I$(top_srcdir)/gnu -I../gnu -I$(top_srcdir)/gnu -I$(top_srcdir)/lib -AM_CPPFLAGS = -DLOCALEDIR=\"$(localedir)\" +AM_CPPFLAGS = \ + -I$(top_srcdir)/gnu\ + -I../gnu\ + -I$(top_srcdir)/gnu\ + -I$(top_srcdir)/lib\ + -DLOCALEDIR=\"$(localedir)\" + LDADD = ../gnu/libgnu.a $(LIBINTL) $(LIB_CLOCK_GETTIME) $(LIB_EACCESS)