diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2006-08-27 06:03:02 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2006-08-27 06:03:02 +0000 |
commit | ddf6238830eb6a409ad928724b53fdd4ea2b0a43 (patch) | |
tree | 3c29f498fba25a85c6693dd195e87efc96b42536 | |
parent | bc94006bd572a3d04eb1af1372b69a3073ea421e (diff) | |
download | coreutils-ddf6238830eb6a409ad928724b53fdd4ea2b0a43.tar.xz |
(AM_CPPFLAGS): Remove -I$(srcdir) and -I../lib,
since Automake supplies them for us. It always did -I$(srcdir),
and with the recent change to AC_CONFIG_HEADERS in configure.ac it
is now also doing -I../lib.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/Makefile.am | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,10 @@ 2006-08-26 Paul Eggert <eggert@cs.ucla.edu> + * src/Makefile.am (AM_CPPFLAGS): Remove -I$(srcdir) and -I../lib, + since Automake supplies them for us. It always did -I$(srcdir), + and with the recent change to AC_CONFIG_HEADERS in configure.ac it + is now also doing -I../lib. + * bootstrap (get_translations): Skip this if WGET_COMMAND is empty. Fail if the first "echo" fails. Suppress diagnostics from "ls po/*.po" since there might not be any .po files. diff --git a/src/Makefile.am b/src/Makefile.am index 9b535f1de..8c39ee02f 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -51,7 +51,7 @@ EXTRA_DIST = dcgen dircolors.hin tac-pipe.c \ BUILT_SOURCES = CLEANFILES = $(SCRIPTS) su -AM_CPPFLAGS = -I$(srcdir) -I$(top_srcdir)/lib -I../lib +AM_CPPFLAGS = -I$(top_srcdir)/lib # Sometimes, the expansion of $(LIBINTL) includes -lc which may # include modules defining variables like `optind', so libcoreutils.a |