ChangeLog, MCONFIG.in:

MCONFIG.in (CPPFLAGS): Add define of CPPFLAGS from @CPPFLAGS@.  Remove
  	uneeded parenthesis around shell pipelines containing a "cd" command.
This commit is contained in:
Theodore Ts'o 2000-04-03 03:18:59 +00:00
parent ceec25a595
commit e8aed8c8db
2 changed files with 13 additions and 6 deletions

View File

@ -1,3 +1,9 @@
2000-04-02 Theodore Ts'o <tytso@valinux.com>
* MCONFIG.in (CPPFLAGS): Add define of CPPFLAGS from @CPPFLAGS@.
Remove uneeded parenthesis around shell pipelines
containing a "cd" command.
2000-02-11 <tytso@snap.thunk.org>
* Makefile.in: Exclude the internationalization files from being

View File

@ -29,6 +29,7 @@ CC = @CC@
BUILD_CC = @BUILD_CC@
DEFS = @DEFS@
CFLAGS = @CFLAGS@
CPPFLAGS = @CPPFLAGS@
ALL_CFLAGS = $(CPPFLAGS) $(DEFS) $(WFLAGS) $(CFLAGS) $(XTRA_CFLAGS) \
-I$(top_builddir)/lib -I$(top_srcdir)/lib \
-I$(top_srcdir)/include $(LINUX_INCLUDE)
@ -98,7 +99,7 @@ SUBSTITUTE= $(top_builddir)/util/subst -f $(SUBST_CONF)
DEP_SUBSTITUTE= $(top_builddir)/util/subst $(SUBST_CONF)
$(top_builddir)/util/subst:
(cd $(top_builddir)/util ; $(MAKE) subst)
cd $(top_builddir)/util ; $(MAKE) subst
#
# Warning flags
@ -137,22 +138,22 @@ DEP_LIB_MAKEFILES = $(top_srcdir)/lib/Makefile.elf-lib \
$(top_srcdir)/lib/Makefile.checker $(top_srcdir)/lib/Makefile.profile
$(top_builddir)/config.status: $(top_srcdir)/configure
(cd $(top_builddir); ./config.status --recheck)
cd $(top_builddir); ./config.status --recheck
$(top_builddir)/MCONFIG: $(top_srcdir)/MCONFIG.in $(top_builddir)/config.status
(cd $(top_builddir); CONFIG_FILES=MCONFIG ./config.status)
cd $(top_builddir); CONFIG_FILES=MCONFIG ./config.status
$(top_builddir)/lib/substitute_sh: $(top_srcdir)/lib/substitute_sh.in \
$(top_builddir)/config.status
(cd $(top_builddir); CONFIG_FILES=lib/substitute_sh ./config.status)
cd $(top_builddir); CONFIG_FILES=lib/substitute_sh ./config.status
$(top_builddir)/util/subst.conf: $(top_srcdir)/util/subst.conf.in \
$(top_builddir)/config.status
(cd $(top_builddir); CONFIG_FILES=util/subst.conf ./config.status)
cd $(top_builddir); CONFIG_FILES=util/subst.conf ./config.status
Makefile: $(srcdir)/Makefile.in $(top_builddir)/MCONFIG \
$(DEP_MAKEFILE) $(top_builddir)/config.status
(cd $(top_builddir); CONFIG_FILES=$(my_dir)/Makefile ./config.status)
cd $(top_builddir); CONFIG_FILES=$(my_dir)/Makefile ./config.status
$(top_srcdir)/configure: $(top_srcdir)/configure.in
cd $(top_srcdir) && autoconf