4b765ed3cf
- update to upstream 3.14.2 - man: separate pages for all subcommands - minor bugfixes - spec: removed upstreamed patches, update build dependencies - Added patches: * 0001-btrfs-progs-doc-fix-symlink-target-for-btrfsck.8.patch - Removed patches: * 0001-Btrfs-progs-fix-check-to-test-trim-support.patch * 0002-Btrfs-progs-fsck-fix-double-free-memory-crash.patch * 0003-Btrfs-progs-mkfs-Remove-zero_end-1-since-it-has-been.patch * 0004-btrfs-progs-fix-wrong-max-system-array-size-check-in.patch * 0005-btrfs-progs-move-arg_strtou64-to-a-separate-file-for.patch * 0009-btrfs-progs-prevent-close_root-if-the-root-to-close-.patch * 0010-btrfs-progs-fix-mkfs.btrfs-segfault-with-features-op.patch OBS-URL: https://build.opensuse.org/request/show/236055 OBS-URL: https://build.opensuse.org/package/show/filesystems/btrfsprogs?expand=0&rev=161
30 lines
935 B
Diff
30 lines
935 B
Diff
From 1982864ee7028c36be8636d1fb2e4e679ee66bed Mon Sep 17 00:00:00 2001
|
|
From: David Sterba <dsterba@suse.cz>
|
|
Date: Mon, 5 May 2014 16:54:00 +0200
|
|
Subject: [PATCH] btrfs-progs: doc: fix symlink target for btrfsck.8
|
|
|
|
The manpage of btrfsck.8 is supposed to link to btrfs-check.8 .
|
|
|
|
Reported-by: WorMzy Tykashi <wormzy.tykashi@gmail.com>
|
|
Signed-off-by: David Sterba <dsterba@suse.cz>
|
|
---
|
|
Documentation/Makefile | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Documentation/Makefile b/Documentation/Makefile
|
|
index 45299bb29f9b..2df6af001cbc 100644
|
|
--- a/Documentation/Makefile
|
|
+++ b/Documentation/Makefile
|
|
@@ -74,7 +74,7 @@ install: install-man
|
|
install-man: man
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(man8dir)
|
|
$(INSTALL) -m 644 $(GZ_MAN8) $(DESTDIR)$(man8dir)
|
|
- $(LNS) btrfs-check.8.gz $(DESTDIR)$(man8dir)
|
|
+ $(LNS) btrfs-check.8.gz $(DESTDIR)$(man8dir)/btrfsck.8.gz
|
|
|
|
clean:
|
|
$(RM) *.xml *.xml+ *.8 *.8.gz
|
|
--
|
|
1.9.0
|
|
|