Update makefiles to install mkfs.ext3, and to install man pages for

mkfs.ext2/3 and fsck.ext2/3.  Also remove any compressed man pages
before installing the man pages.
bitmap-optimize
Theodore Ts'o 2002-02-24 03:08:57 -05:00
parent 541d173d91
commit b9f409255e
11 changed files with 54 additions and 8 deletions

7
debian/rules vendored
View File

@ -271,13 +271,6 @@ binary-arch: install
dh_strip
dh_link -pe2fsprogs \
/usr/share/man/man8/e2fsck.8.gz /usr/share/man/man8/fsck.ext2.8.gz \
/usr/share/man/man8/mke2fs.8.gz /usr/share/man/man8/mkfs.ext2.8.gz
dh_link -puuid-dev \
/usr/share/man/man3/uuid_generate.3.gz /usr/share/man/man3/uuid_generate_random.3.gz \
/usr/share/man/man3/uuid_generate.3.gz /usr/share/man/man3/uuid_generate_time.3.gz
dh_compress
dh_fixperms

View File

@ -1,3 +1,8 @@
2002-02-24 Theodore Tso <tytso@valinux.com>
* Makefile.in (install): Remove any compressed man pages before
installing the man pages.
2002-02-03 Theodore Tso <tytso@thunk.org>
* Release of E2fsprogs 1.26

View File

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

View File

@ -1,3 +1,9 @@
2002-02-24 Theodore Tso <tytso@valinux.com>
* Makefile.in (install): Install hard links for man pages for
fsck.ext2 and fsck.ext3. Remove any compressed man
pages before installing the man pages.
2002-02-22 Theodore Tso <tytso@valinux.com>
* journal.c: Improve code maintainability and reduce code size by

View File

@ -146,8 +146,11 @@ 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; \
$(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
done
$(LN) -f $(DESTDIR)$(man8dir)/fsck.8 $(DESTDIR)$(man8dir)/fsck.ext2.8
$(LN) -f $(DESTDIR)$(man8dir)/fsck.8 $(DESTDIR)$(man8dir)/fsck.ext3.8
uninstall:
for i in $(PROGS); do \
@ -158,6 +161,8 @@ uninstall:
for i in $(MANPAGES); do \
$(RM) -f $(DESTDIR)$(man8dir)/$$i; \
done
$(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \
$(DESTDIR)$(root_sbindir)/fsck.ext3
clean:
$(RM) -f $(PROGS) \#* *\# *.s *.o *.a *~ core e2fsck.static \

View File

@ -1,3 +1,9 @@
2002-02-24 Theodore Tso <tytso@valinux.com>
* Makefile.in (install): Install hard links to man pages for
uuid_generate_random and uuid_generate_time. Remove
any compressed man pages before installing the man pages.
2002-02-03 Theodore Tso <tytso@thunk.org>
* Release of E2fsprogs 1.26

View File

@ -132,14 +132,20 @@ install:: all installdirs
$(CHMOD) $(LIBMODE) $(DESTDIR)$(libdir)/libuuid.a
$(INSTALL_DATA) $(srcdir)/uuid.h $(DESTDIR)$(includedir)/uuid/uuid.h
for i in $(SMANPAGES); do \
$(RM) -f $(DESTDIR)$(man3dir)/$$i.gz; \
$(INSTALL_DATA) $$i $(DESTDIR)$(man3dir)/$$i; \
done
$(RM) -f $(DESTDIR)$(man3dir)/uuid_generate_random.3.gz \
$(DESTDIR)$(man3dir)/uuid_generate_time.3.gz
$(LN) -f $(DESTDIR)$(man3dir)/uuid_generate.3 $(DESTDIR)$(man3dir)/uuid_generate_random.3
$(LN) -f $(DESTDIR)$(man3dir)/uuid_generate.3 $(DESTDIR)$(man3dir)/uuid_generate_time.3
uninstall::
$(RM) -f $(DESTDIR)$(libdir)/libuuid.a
for i in $(SMANPAGES); do \
$(RM) -f $(DESTDIR)$(man3dir)/$$i; \
done
$(RM) -f $(DESTDIR)$(man3dir)/uuid_generate_random.3 $(DESTDIR)$(man3dir)/uuid_generate_time.3
clean::
$(RM) -f \#* *.s *.o *.a *~ *.bak core profiled/* checker/*

View File

@ -1,3 +1,10 @@
2002-02-24 Theodore Tso <tytso@valinux.com>
* Makefile.in (install): Install hard links for man pages for
mkfs.ext2 and mkfs.ext3. Also install hard link for
mkfs.ext3. Remove any compressed man pages before
installing the man pages.
2002-02-23 Theodore Tso <tytso@valinux.com>
* badblocks.8.in: Clarify man page's description of the -f option

View File

@ -153,6 +153,8 @@ install: all $(SMANPAGES) $(UMANPAGES) installdirs
done
$(LN) -f $(DESTDIR)$(root_sbindir)/mke2fs \
$(DESTDIR)$(root_sbindir)/mkfs.ext2
$(LN) -f $(DESTDIR)$(root_sbindir)/mke2fs \
$(DESTDIR)$(root_sbindir)/mkfs.ext3
$(LN) -f $(DESTDIR)$(root_sbindir)/tune2fs \
$(DESTDIR)$(root_sbindir)/e2label
for i in $(UPROGS); do \
@ -160,9 +162,15 @@ install: all $(SMANPAGES) $(UMANPAGES) installdirs
$(STRIP) $(DESTDIR)$(bindir)/$$i; \
done
for i in $(SMANPAGES); do \
$(RM) -f $(DESTDIR)$(man8dir)/$$i.gz; \
$(INSTALL_DATA) $$i $(DESTDIR)$(man8dir)/$$i; \
done
$(RM) -f $(DESTDIR)$(man8dir)/mkfs.ext2.8.gz \
$(DESTDIR)$(man8dir)/mkfs.ext3.8.gz
$(LN) -f $(DESTDIR)$(man8dir)/mke2fs.8 $(DESTDIR)$(man8dir)/mkfs.ext2.8
$(LN) -f $(DESTDIR)$(man8dir)/mke2fs.8 $(DESTDIR)$(man8dir)/mkfs.ext3.8
for i in $(UMANPAGES); do \
$(RM) -f $(DESTDIR)$(man1dir)/$$i.gz; \
$(INSTALL_DATA) $$i $(DESTDIR)$(man1dir)/$$i; \
done
@ -173,13 +181,16 @@ uninstall:
for i in $(USPROGS); do \
$(RM) -f $(DESTDIR)$(sbindir)/$$i; \
done
$(RM) -f $(DESTDIR)$(root_sbindir)/mkfs.ext2
$(RM) -f $(DESTDIR)$(root_sbindir)/mkfs.ext2 \
$(DESTDIR)$(root_sbindir)/mkfs.ext3
for i in $(UPROGS); do \
$(RM) -f $(DESTDIR)$(bindir)/$$i; \
done
for i in $(SMANPAGES); do \
$(RM) -f $(DESTDIR)$(man8dir)/$$i; \
done
$(RM) -f $(DESTDIR)$(man8dir)/mkfs.ext2.8 \
$(DESTDIR)$(man8dir)/mkfs.ext3.8
for i in $(UMANPAGES); do \
$(RM) -f $(DESTDIR)$(man1dir)/$$i; \
done

View File

@ -1,3 +1,8 @@
2002-02-24 Theodore Tso <tytso@valinux.com>
* Makefile.in (install): Remove any compressed man pages before
installing the man pages.
2002-02-03 Theodore Tso <tytso@thunk.org>
* Release of E2fsprogs 1.26

View File

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