From: Theodore Ts'o Date: Mon, 3 Apr 2000 13:17:59 +0000 (+0000) Subject: ChangeLog, Makefile.in: X-Git-Tag: E2FSPROGS-1_19~66 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=286a31aa8a746337323b06ff1f35b9343186bfbe;p=tools%2Fe2fsprogs.git ChangeLog, Makefile.in: Makefile.in: Remove uneeded parenthesis around shell pipelines containing a "cd" command. Use && instead of ; so that if the "cd" fails, the makefile stops. ChangeLog: Fix typo. --- diff --git a/ChangeLog b/ChangeLog index 2a6891c..5a73896 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,8 @@ -2000-04-02 Theodore Ts'o +2000-04-03 Theodore Ts'o + + * Makefile.in: Remove uneeded parenthesis around shell pipelines + containing a "cd" command. Use && instead of ; so that if + the "cd" fails, the makefile stops. * MCONFIG.in (CPPFLAGS): Add define of CPPFLAGS from @CPPFLAGS@. Remove uneeded parenthesis around shell pipelines diff --git a/Makefile.in b/Makefile.in index 9e4194d..4cec659 100644 --- a/Makefile.in +++ b/Makefile.in @@ -21,23 +21,23 @@ progs: $(SUBS) all-progs-recursive libs: $(SUBS) all-libs-recursive docs: - (cd doc && make libext2fs.info) + cd doc && make libext2fs.info install-doc-libs: - (cd doc && make install-doc-libs) + cd doc && make install-doc-libs uninstall-doc-libs: - (cd doc && make uninstall-doc-libs) + cd doc && make uninstall-doc-libs clean-doc: - (cd doc && make clean) + cd doc && make clean distclean-doc: - (cd doc && make distclean) + cd doc && make distclean install: all-libs-recursive install-progs-recursive \ install-shlibs-libs-recursive install-doc-libs -# (export MANPATH=$(DESTDIR)$(mandir); $(srcdir)/install-utils/compile_manpages) +# export MANPATH=$(DESTDIR)$(mandir); $(srcdir)/install-utils/compile_manpages uninstall: uninstall-progs-recursive uninstall-shlibs-libs-recursive uninstall-doc-libs @@ -102,16 +102,15 @@ realclean-local: distclean-local $(RM) -f configure check: - (cd tests; make check) + cd tests && make check distribution_tar_file: $(RM) -rf /tmp/dest make DESTDIR=/tmp/dest install - cd .. cp -r $(srcdir)/README $(srcdir)/install-utils /tmp/dest $(RM) -rf /tmp/dest/install-utils/CVS /tmp/dest/install-utils/ChangeLog cp $(srcdir)/INSTALL.@BINARY_TYPE@ /tmp/dest/INSTALL - (cd /tmp/dest; $(TAR) cf - . ) | gzip -9 \ + (cd /tmp/dest && $(TAR) cf - . ) | gzip -9 \ > e2fsprogs-@E2FSPROGS_VERSION@-@BINARY_TYPE@.tar.gz SRCROOT = `echo e2fsprogs-@E2FSPROGS_VERSION@ | sed -e 's/-WIP//' \ @@ -119,7 +118,7 @@ SRCROOT = `echo e2fsprogs-@E2FSPROGS_VERSION@ | sed -e 's/-WIP//' \ $(srcdir)/.exclude-file: a=$(SRCROOT); \ - (cd $(srcdir)/.. ; find e2fsprogs \( -name \*~ -o -name \*.orig \ + (cd $(srcdir)/.. && find e2fsprogs \( -name \*~ -o -name \*.orig \ -o -name CVS -o -name \*.rej -o -name Makefile.pq \ -o -name TAGS -o -name \*.old -o -name \*.gmo \ -o -name TODO -o -name changed-files -o -name .#\* \) \ @@ -135,8 +134,8 @@ $(srcdir)/.exclude-file: >> $(srcdir)/.exclude-file source_tar_file: $(srcdir)/.exclude-file - (cd $(srcdir)/..; a=$(SRCROOT); rm -f $$a ; ln -sf e2fsprogs $$a ; \ + cd $(srcdir)/.. && a=$(SRCROOT); rm -f $$a ; ln -sf e2fsprogs $$a ; \ $(TAR) -c -h -v -f - \ -X $$a/.exclude-file $$a | \ - gzip -9 > e2fsprogs-@E2FSPROGS_VERSION@.tar.gz) + gzip -9 > e2fsprogs-@E2FSPROGS_VERSION@.tar.gz rm -f $(srcdir)/.exclude-file diff --git a/include/linux/ChangeLog b/include/linux/ChangeLog index 68c54eb..70a266f 100644 --- a/include/linux/ChangeLog +++ b/include/linux/ChangeLog @@ -1,6 +1,6 @@ 2000-02-06 Theodore Ts'o - * ext2_fs.h: Fix header to skip defining EXT@FS_DEBUG since blows + * ext2_fs.h: Fix header to skip defining EXT2FS_DEBUG since blows out on non GCC compilers. 2000-02-02 Theodore Ts'o