Makefile.in (install): Search all compression extensions when

deleting old man pages.
bitmap-optimize
Theodore Ts'o 2002-10-31 03:32:34 -05:00
parent a2328c9f42
commit 482afc442d
10 changed files with 32 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2002-10-30 Theodore Ts'o <tytso@mit.edu>
* MCONFIG.in (COMPRESS_EXT): Declare all compression extensions
2001-09-24 Theodore Tso <tytso@mit.edu>
* Release of E2fsprogs 1.29

View File

@ -6,6 +6,8 @@ check::
SHELL = /bin/sh
COMPRESS_EXT = gz bz2 bz Z
prefix = @prefix@
root_prefix = @root_prefix@
exec_prefix = @exec_prefix@

View File

@ -1,3 +1,8 @@
2002-10-30 Theodore Ts'o <tytso@mit.edu>
* Makefile.in (install): Search all compression extensions when
deleting old man pages.
2002-10-13 Theodore Ts'o <tytso@mit.edu>
* debugfs.h, htree.c, setsuper.c: Fix gcc -Wall nits.

View File

@ -51,7 +51,9 @@ install: $(PROGS) $(MANPAGES) installdirs
$(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
done
for i in $(MANPAGES); do \
$(RM) -f $(DESTDIR)$(man8dir)/$$i.gz; \
for j in $(COMPRESS_EXT); do \
$(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \
done; \
$(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
done

View File

@ -1,5 +1,8 @@
2002-10-30 Theodore Ts'o <tytso@mit.edu>
* Makefile.in (install): Search all compression extensions when
deleting old man pages.
* pass1.c (mark_table_blocks): Fix bug in meta_bg support; only
mark blocks legacy group descriptor blocks up to
s_first_meta_bg.

View File

@ -150,7 +150,9 @@ install: $(PROGS) $(MANPAGES) installdirs
$(LN) -f $(DESTDIR)$(root_sbindir)/e2fsck \
$(DESTDIR)$(root_sbindir)/fsck.ext3
for i in $(MANPAGES); do \
$(RM) -f $(DESTDIR)$(man8dir)/$$i.gz; \
for j in $(COMPRESS_EXT); do \
$(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \
done; \
$(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
done
$(LN) -f $(DESTDIR)$(man8dir)/e2fsck.8 $(DESTDIR)$(man8dir)/fsck.ext2.8

View File

@ -1,5 +1,8 @@
2002-10-30 Theodore Ts'o <tytso@mit.edu>
* Makefile.in (install): Search all compression extensions when
deleting old man pages.
* dumpe2fs.c (list_desc): Fix bug in algorithm which determined
which blocks are used as backup superblock and block group
descriptors.

View File

@ -167,7 +167,9 @@ install: all $(SMANPAGES) $(UMANPAGES) installdirs
$(STRIP) $(DESTDIR)$(bindir)/$$i; \
done
for i in $(SMANPAGES); do \
$(RM) -f $(DESTDIR)$(man8dir)/$$i.gz; \
for j in $(COMPRESS_EXT); do \
$(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \
done; \
$(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
done
$(RM) -f $(DESTDIR)$(man8dir)/mkfs.ext2.8.gz \

View File

@ -1,5 +1,8 @@
2002-10-30 Theodore Ts'o <tytso@mit.edu>
* Makefile.in (install): Search all compression extensions when
deleting old man pages.
* resize2fs.c (adjust_superblock, mark_table_blocks,
blocks_to_move): Add support for resizing filesystems that
use the meta block group layout.

View File

@ -59,7 +59,9 @@ install: $(PROGS) $(MANPAGES) installdirs
$(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
done
for i in $(MANPAGES); do \
$(RM) -f $(DESTDIR)$(man8dir)/$$i.gz; \
for j in $(COMPRESS_EXT); do \
$(RM) -f $(DESTDIR)$(man8dir)/$$i.$$j; \
done; \
$(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
done