public inbox for lvm2-cvs@sourceware.org
help / color / mirror / Atom feed
* LVM2/man Makefile.in
@ 2011-09-23 17:05 agk
  0 siblings, 0 replies; 3+ messages in thread
From: agk @ 2011-09-23 17:05 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	agk@sourceware.org	2011-09-23 17:05:44

Modified files:
	man            : Makefile.in 

Log message:
	missing Makefile dep

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/man/Makefile.in.diff?cvsroot=lvm2&r1=1.41&r2=1.42

--- LVM2/man/Makefile.in	2011/09/23 09:48:21	1.41
+++ LVM2/man/Makefile.in	2011/09/23 17:05:44	1.42
@@ -68,7 +68,7 @@
 
 man: $(MAN5) $(MAN8) $(MAN8CLUSTER)
 
-$(MAN5) $(MAN8) $(MAN8CLUSTER):	Makefile
+$(MAN5) $(MAN8) $(MAN8DM) $(MAN8CLUSTER):	Makefile
 
 %: %.in
 	@case "$@" in \


^ permalink raw reply	[flat|nested] 3+ messages in thread

* LVM2/man Makefile.in
@ 2010-03-29 14:22 zkabelac
  0 siblings, 0 replies; 3+ messages in thread
From: zkabelac @ 2010-03-29 14:22 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	zkabelac@sourceware.org	2010-03-29 14:22:00

Modified files:
	man            : Makefile.in 

Log message:
	Avoid modification of .in files outside man directory.
	(i.e. this rule actually tried to change ../make.tmpl in some cases and
	left this file completely broken)

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/man/Makefile.in.diff?cvsroot=lvm2&r1=1.33&r2=1.34

--- LVM2/man/Makefile.in	2010/03/29 14:18:01	1.33
+++ LVM2/man/Makefile.in	2010/03/29 14:22:00	1.34
@@ -66,7 +66,10 @@
 $(MAN5) $(MAN8) $(MAN8CLUSTER):	Makefile
 
 %: %.in
-	$(SED) -e "s/#VERSION#/$(LVM_VERSION)/" $< > $@
+	@case "$@" in \
+	  */*) ;; \
+	  *) echo "Creating $@" ; $(SED) -e "s/#VERSION#/$(LVM_VERSION)/" $< > $@ ;; \
+	esac
 
 install_lvm2:
 	@echo "Installing $(MAN8) in $(MAN8DIR)"


^ permalink raw reply	[flat|nested] 3+ messages in thread

* LVM2/man Makefile.in
@ 2008-01-09 14:17 zkabelac
  0 siblings, 0 replies; 3+ messages in thread
From: zkabelac @ 2008-01-09 14:17 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	zkabelac@sourceware.org	2008-01-09 14:17:58

Modified files:
	man            : Makefile.in 

Log message:
	install conditionally fsadm.8 manpage

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/man/Makefile.in.diff?cvsroot=lvm2&r1=1.21&r2=1.22

--- LVM2/man/Makefile.in	2007/09/21 10:16:44	1.21
+++ LVM2/man/Makefile.in	2008/01/09 14:17:58	1.22
@@ -16,6 +16,12 @@
 top_srcdir = @top_srcdir@
 VPATH = @srcdir@
 
+ifeq ("@FSADM@", "yes")
+FSADMMAN = fsadm.8
+else
+FSADMMAN =
+endif
+
 MAN5=lvm.conf.5
 MAN8=lvchange.8 lvconvert.8 lvcreate.8 lvdisplay.8 lvextend.8 lvm.8 \
 	lvmchange.8 lvmdiskscan.8 lvmdump.8 \
@@ -24,7 +30,7 @@
 	pvresize.8 pvs.8 pvscan.8 vgcfgbackup.8 vgcfgrestore.8 vgchange.8 \
 	vgck.8 vgcreate.8 vgconvert.8 vgdisplay.8 vgexport.8 vgextend.8 \
 	vgimport.8 vgmerge.8 vgmknodes.8 vgreduce.8 vgremove.8 vgrename.8 \
-	vgs.8 vgscan.8 vgsplit.8
+	vgs.8 vgscan.8 vgsplit.8 $(FSADMMAN)
 MAN8CLUSTER=clvmd.8
 MAN5DIR=${mandir}/man5
 MAN8DIR=${mandir}/man8


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-09-23 17:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-23 17:05 LVM2/man Makefile.in agk
  -- strict thread matches above, loose matches on Subject: below --
2010-03-29 14:22 zkabelac
2008-01-09 14:17 zkabelac

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).