Browse Source

Bugfix.

* tests/Makefile.am: Fix double AM_CPPFLAGS
Sergey Poznyakoff 12 years ago
parent
commit
4bfa82acd5
1 changed files with 7 additions and 2 deletions
  1. 7 2
      tests/Makefile.am

+ 7 - 2
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)