mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-12-13 11:54:31 +08:00
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:
parent
ceec25a595
commit
e8aed8c8db
@ -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>
|
2000-02-11 <tytso@snap.thunk.org>
|
||||||
|
|
||||||
* Makefile.in: Exclude the internationalization files from being
|
* Makefile.in: Exclude the internationalization files from being
|
||||||
|
13
MCONFIG.in
13
MCONFIG.in
@ -29,6 +29,7 @@ CC = @CC@
|
|||||||
BUILD_CC = @BUILD_CC@
|
BUILD_CC = @BUILD_CC@
|
||||||
DEFS = @DEFS@
|
DEFS = @DEFS@
|
||||||
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@
|
||||||
|
CPPFLAGS = @CPPFLAGS@
|
||||||
ALL_CFLAGS = $(CPPFLAGS) $(DEFS) $(WFLAGS) $(CFLAGS) $(XTRA_CFLAGS) \
|
ALL_CFLAGS = $(CPPFLAGS) $(DEFS) $(WFLAGS) $(CFLAGS) $(XTRA_CFLAGS) \
|
||||||
-I$(top_builddir)/lib -I$(top_srcdir)/lib \
|
-I$(top_builddir)/lib -I$(top_srcdir)/lib \
|
||||||
-I$(top_srcdir)/include $(LINUX_INCLUDE)
|
-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)
|
DEP_SUBSTITUTE= $(top_builddir)/util/subst $(SUBST_CONF)
|
||||||
|
|
||||||
$(top_builddir)/util/subst:
|
$(top_builddir)/util/subst:
|
||||||
(cd $(top_builddir)/util ; $(MAKE) subst)
|
cd $(top_builddir)/util ; $(MAKE) subst
|
||||||
|
|
||||||
#
|
#
|
||||||
# Warning flags
|
# 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_srcdir)/lib/Makefile.checker $(top_srcdir)/lib/Makefile.profile
|
||||||
|
|
||||||
$(top_builddir)/config.status: $(top_srcdir)/configure
|
$(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
|
$(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)/lib/substitute_sh: $(top_srcdir)/lib/substitute_sh.in \
|
||||||
$(top_builddir)/config.status
|
$(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)/util/subst.conf: $(top_srcdir)/util/subst.conf.in \
|
||||||
$(top_builddir)/config.status
|
$(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 \
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/MCONFIG \
|
||||||
$(DEP_MAKEFILE) $(top_builddir)/config.status
|
$(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
|
$(top_srcdir)/configure: $(top_srcdir)/configure.in
|
||||||
cd $(top_srcdir) && autoconf
|
cd $(top_srcdir) && autoconf
|
||||||
|
Loading…
Reference in New Issue
Block a user