Whamcloud - gitweb
Makefile.in (install): Search all compression extensions when
authorTheodore Ts'o <tytso@mit.edu>
Thu, 31 Oct 2002 08:32:34 +0000 (03:32 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Thu, 31 Oct 2002 08:32:34 +0000 (03:32 -0500)
deleting old man pages.

ChangeLog
MCONFIG.in
debugfs/ChangeLog
debugfs/Makefile.in
e2fsck/ChangeLog
e2fsck/Makefile.in
misc/ChangeLog
misc/Makefile.in
resize/ChangeLog
resize/Makefile.in

index 32d975f..8637701 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 724a9dd..4847cc4 100644 (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@
index 2de14f5..71b1909 100644 (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.
index c3811fd..5918a9d 100644 (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
 
index f781678..9fbf845 100644 (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.
index 4e78d8c..f16e392 100644 (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
index 57e6bc1..f38ceaa 100644 (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.
index bc2bb75..8536c5a 100644 (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 \
index 54f0ae9..dc65274 100644 (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.
index 20c747c..3ad2ceb 100644 (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