search for: man8dir

Displaying 6 results from an estimated 6 matches for "man8dir".

Did you mean: man1dir
2009 Jan 13
0
[btrfs-progs 3/4] Add man/btrfsck.8.in and Makefile for man pages
...mode 100644 man/Makefile create mode 100644 man/btrfsck.8.in diff --git a/man/Makefile b/man/Makefile new file mode 100644 index 0000000..2665dd1 --- /dev/null +++ b/man/Makefile @@ -0,0 +1,27 @@ +GZIP=gzip +INSTALL= install + +prefix ?= /usr/local +bindir = $(prefix)/bin +mandir = $(prefix)/man +man8dir = $(mandir)/man8 + +MANPAGES = mkfs.btrfs.8.gz btrfsctl.8.gz btrfsck.8.gz + +all: $(MANPAGES) + +mkfs.btrfs.8.gz: mkfs.btrfs.8.in + $(GZIP) -n -c mkfs.btrfs.8.in > mkfs.btrfs.8.gz + +btrfsctl.8.gz: btrfsctl.8.in + $(GZIP) -n -c btrfsctl.8.in > btrfsctl.8.gz + +btrfsck.8.gz: btrfsck.8.in + $(G...
2012 Aug 22
9
make uninstall can delete xen-kernels
Nice time. # make uninstall ... rm -rf //boot/*xen* ... if somebody use "xen" in kernel name (maybe as suffix), so it will be deleted from /boot/ too. Thanks. Denis.
2009 Mar 30
0
[PATCH] add btrfs-image man page
...+++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 1 deletions(-) create mode 100644 man/btrfs-image.8.in diff --git a/man/Makefile b/man/Makefile index 2665dd1..b7a7340 100644 --- a/man/Makefile +++ b/man/Makefile @@ -6,7 +6,7 @@ bindir = $(prefix)/bin mandir = $(prefix)/man man8dir = $(mandir)/man8 -MANPAGES = mkfs.btrfs.8.gz btrfsctl.8.gz btrfsck.8.gz +MANPAGES = mkfs.btrfs.8.gz btrfsctl.8.gz btrfsck.8.gz btrfs-image.8.gz all: $(MANPAGES) @@ -19,6 +19,9 @@ btrfsctl.8.gz: btrfsctl.8.in btrfsck.8.gz: btrfsck.8.in $(GZIP) -n -c btrfsck.8.in > btrfsck.8.gz +btrfs-...
2010 Feb 17
0
[PATCH 2/2 V2] btrfs, a new tool to manage a btrfs filesystem; man page
...cts - Renamed the ''create'' verb is ''subvolume'' Thanks to Daniel for some tweaks on the syntax BR G.Baroncelli diff --git a/man/Makefile b/man/Makefile index 4e8893b..4a90b75 100644 --- a/man/Makefile +++ b/man/Makefile @@ -7,13 +7,16 @@ mandir = $(prefix)/man man8dir = $(mandir)/man8 MANPAGES = mkfs.btrfs.8.gz btrfsctl.8.gz btrfsck.8.gz btrfs-image.8.gz \ - btrfs-show.8.gz + btrfs-show.8.gz btrfs.8.gz all: $(MANPAGES) mkfs.btrfs.8.gz: mkfs.btrfs.8.in $(GZIP) -n -c mkfs.btrfs.8.in > mkfs.btrfs.8.gz +btrfs.8.gz: btrfs.8.in + $(GZIP) -n -c bt...
2012 Jun 20
9
[PATCH 0 of 1 v2] tools: honour --libdir when it is passed to ./configure
I''ve removed all the LIBLEAF bits in this version, but kept passing the libfsimage plugin location via compiler command line. If there''s a better way to do this, I''m certainly open to it. But looking at it further today I think this isn''t too horrible. Matt
2011 Oct 18
18
make install not creating lib entries in /usr/lib under Ubunu 11.10
I am building xen-unstable (23860:a422e2a4451e) on Ubuntu 11.10. I noticed that the "make install" does not create lib entries in /usr/lib/. I see them only in /usr/lib64/. This is causing program like xenpaging to not find the xenctrl library (error while loading shared libraries: libxenctrl.so.4.2: cannot open shared object file: No such file or directory) Is this expected behavior or