From 0e7a081ce65d89b8d9f9e64d5cf28ae87f073e70 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Tue, 31 Jan 2017 17:08:34 -0500 Subject: [PATCH] Stop installing mkfs.ext4dev and fsck.ext4dev Signed-off-by: Theodore Ts'o --- e2fsck/Makefile.in | 10 ++++------ misc/Makefile.in | 11 ++++------- 2 files changed, 8 insertions(+), 13 deletions(-) diff --git a/e2fsck/Makefile.in b/e2fsck/Makefile.in index 6f626f4..cee6a42 100644 --- a/e2fsck/Makefile.in +++ b/e2fsck/Makefile.in @@ -196,7 +196,7 @@ install: $(PROGS) $(MANPAGES) $(FMANPAGES) installdirs $(ES) " INSTALL $(root_sbindir)/$$i"; \ $(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \ done - $(Q) for i in ext2 ext3 ext4 ext4dev; do \ + $(Q) for i in ext2 ext3 ext4; do \ $(ES) " LINK $(root_sbindir)/fsck.$$i"; \ (cd $(DESTDIR)$(root_sbindir); \ $(LN) $(LINK_INSTALL_FLAGS) e2fsck fsck.$$i); \ @@ -215,7 +215,7 @@ install: $(PROGS) $(MANPAGES) $(FMANPAGES) installdirs $(ES) " INSTALL_DATA $(man5dir)/$$i"; \ $(INSTALL_DATA) $$i $(DESTDIR)$(man5dir)/$$i; \ done - $(Q) for i in ext2 ext3 ext4 ext4dev; do \ + $(Q) for i in ext2 ext3 ext4; do \ $(ES) " LINK $(man8dir)/fsck.$$i.8"; \ (cd $(DESTDIR)$(man8dir); \ $(LN) $(LINK_INSTALL_FLAGS) e2fsck.8 fsck.$$i.8); \ @@ -233,8 +233,7 @@ uninstall: done $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \ $(DESTDIR)$(root_sbindir)/fsck.ext3 \ - $(DESTDIR)$(root_sbindir)/fsck.ext4 \ - $(DESTDIR)$(root_sbindir)/fsck.ext4dev + $(DESTDIR)$(root_sbindir)/fsck.ext4 for i in $(MANPAGES); do \ $(RM) -f $(DESTDIR)$(man8dir)/$$i; \ done @@ -243,8 +242,7 @@ uninstall: done $(RM) -f $(DESTDIR)$(root_sbindir)/fsck.ext2 \ $(DESTDIR)$(root_sbindir)/fsck.ext3 \ - $(DESTDIR)$(root_sbindir)/fsck.ext4 \ - $(DESTDIR)$(root_sbindir)/fsck.ext4dev + $(DESTDIR)$(root_sbindir)/fsck.ext4 clean:: $(RM) -f $(PROGS) \#* *\# *.s *.o *.a *~ core e2fsck.static \ diff --git a/misc/Makefile.in b/misc/Makefile.in index 370fdac..467c15d 100644 --- a/misc/Makefile.in +++ b/misc/Makefile.in @@ -524,7 +524,7 @@ install: all $(SMANPAGES) $(UMANPAGES) installdirs $(ES) " INSTALL $(sbindir)/$$i"; \ $(INSTALL_PROGRAM) $$i $(DESTDIR)$(sbindir)/$$i; \ done - $(Q) for i in ext2 ext3 ext4 ext4dev; do \ + $(Q) for i in ext2 ext3 ext4; do \ $(ES) " LINK $(root_sbindir)/mkfs.$$i"; \ (cd $(DESTDIR)$(root_sbindir); \ $(LN) $(LINK_INSTALL_FLAGS) mke2fs mkfs.$$i); \ @@ -553,7 +553,7 @@ install: all $(SMANPAGES) $(UMANPAGES) installdirs done $(Q) $(RM) -f $(DESTDIR)$(man8dir)/mkfs.ext2.8.gz \ $(DESTDIR)$(man8dir)/mkfs.ext3.8.gz - $(Q) for i in ext2 ext3 ext4 ext4dev; do \ + $(Q) for i in ext2 ext3 ext4; do \ $(ES) " LINK mkfs.$$i.8"; \ (cd $(DESTDIR)$(man8dir); \ $(LN) $(LINK_INSTALL_FLAGS) mke2fs.8 mkfs.$$i.8); \ @@ -628,8 +628,7 @@ uninstall: done $(RM) -f $(DESTDIR)$(root_sbindir)/mkfs.ext2 \ $(DESTDIR)$(root_sbindir)/mkfs.ext3 \ - $(DESTDIR)$(root_sbindir)/mkfs.ext4 \ - $(DESTDIR)$(root_sbindir)/mkfs.ext4dev + $(DESTDIR)$(root_sbindir)/mkfs.ext4 for i in $(UPROGS); do \ $(RM) -f $(DESTDIR)$(bindir)/$$i; \ done @@ -639,11 +638,9 @@ uninstall: $(RM) -f $(DESTDIR)$(man8dir)/mkfs.ext2.8 \ $(DESTDIR)$(man8dir)/mkfs.ext3.8 \ $(DESTDIR)$(man8dir)/mkfs.ext4.8 \ - $(DESTDIR)$(man8dir)/mkfs.ext4dev.8 \ $(DESTDIR)$(man8dir)/fsck.ext2.8 \ $(DESTDIR)$(man8dir)/fsck.ext3.8 \ - $(DESTDIR)$(man8dir)/fsck.ext4.8 \ - $(DESTDIR)$(man8dir)/fsck.ext4dev.8 + $(DESTDIR)$(man8dir)/fsck.ext4.8 for i in $(UMANPAGES); do \ $(RM) -f $(DESTDIR)$(man1dir)/$$i; \ -- 1.8.3.1