public inbox for lvm2-cvs@sourceware.org
help / color / mirror / Atom feed
* LVM2/liblvm Makefile.in
@ 2009-09-03 18:19 mornfall
  0 siblings, 0 replies; 4+ messages in thread
From: mornfall @ 2009-09-03 18:19 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	mornfall@sourceware.org	2009-09-03 18:19:08

Modified files:
	liblvm         : Makefile.in 

Log message:
	Do not override the distclean target in liblvm's Makefile, it annoys make and
	the make.tmpl-included distclean should work better anyway.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/liblvm/Makefile.in.diff?cvsroot=lvm2&r1=1.14&r2=1.15

--- LVM2/liblvm/Makefile.in	2009/09/01 18:11:14	1.14
+++ LVM2/liblvm/Makefile.in	2009/09/03 18:19:07	1.15
@@ -93,4 +93,3 @@
 	$(RM) $(LIB_NAME).pc
 
 distclean: distclean_lib
-	$(RM) -f Makefile


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

* LVM2/liblvm Makefile.in
@ 2010-02-24 18:16 wysochanski
  0 siblings, 0 replies; 4+ messages in thread
From: wysochanski @ 2010-02-24 18:16 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	wysochanski@sourceware.org	2010-02-24 18:16:10

Modified files:
	liblvm         : Makefile.in 

Log message:
	Add tag_list_copy() supporting function inside lvm2app.
	
	Add a supporting function to copy a list of internal tags to lvm2app list.
	We need to put this here because of the lvm_str_list_t type which we export
	in lvm2app.h.  If we didn't export this type, we could put this in the
	internal library and use struct str_list.
	
	Signed-off-by: Dave Wysochanski <dwysocha@redhat.com>

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/liblvm/Makefile.in.diff?cvsroot=lvm2&r1=1.17&r2=1.18

--- LVM2/liblvm/Makefile.in	2009/10/02 19:10:36	1.17
+++ LVM2/liblvm/Makefile.in	2010/02/24 18:16:10	1.18
@@ -18,6 +18,7 @@
 VPATH = @srcdir@
 
 SOURCES =\
+	lvm_misc.c \
 	lvm_base.c \
 	lvm_lv.c \
 	lvm_pv.c \


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

* LVM2/liblvm Makefile.in
@ 2009-07-22 20:29 agk
  0 siblings, 0 replies; 4+ messages in thread
From: agk @ 2009-07-22 20:29 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	agk@sourceware.org	2009-07-22 20:29:57

Modified files:
	liblvm         : Makefile.in 

Log message:
	fix dir in generated file list for cflow

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/liblvm/Makefile.in.diff?cvsroot=lvm2&r1=1.8&r2=1.9

--- LVM2/liblvm/Makefile.in	2009/07/22 20:12:14	1.8
+++ LVM2/liblvm/Makefile.in	2009/07/22 20:29:56	1.9
@@ -42,7 +42,7 @@
 liblvm.cflow: $(SOURCES)
 	set -e; (echo -n "SOURCES += "; \
 		 echo $(SOURCES) | \
-		 sed "s/^/ /;s/ / $(top_srcdir)\/lib\//g;s/$$//"; \
+		 sed "s/^/ /;s/ / $(top_srcdir)\/liblvm\//g;s/$$//"; \
 		 ) > $@
 
 cflow: liblvm.cflow


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

* LVM2/liblvm Makefile.in
@ 2009-03-08 18:10 wysochanski
  0 siblings, 0 replies; 4+ messages in thread
From: wysochanski @ 2009-03-08 18:10 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	wysochanski@sourceware.org	2009-03-08 18:10:39

Modified files:
	liblvm         : Makefile.in 

Log message:
	Fix liblvm version symlink.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/liblvm/Makefile.in.diff?cvsroot=lvm2&r1=1.3&r2=1.4

--- LVM2/liblvm/Makefile.in	2009/03/08 17:29:26	1.3
+++ LVM2/liblvm/Makefile.in	2009/03/08 18:10:39	1.4
@@ -21,6 +21,7 @@
 
 LIB_NAME = liblvm
 LIB_VERSION = $(LIB_VERSION_LVM)
+VERSIONED_SHLIB = $(LIB_NAME).$(LIB_SUFFIX).$(LIB_VERSION_LVM)
 
 LIB_STATIC = $(LIB_NAME).a
 LIB_SHARED = $(LIB_NAME).so
@@ -31,11 +32,9 @@
 
 LIBS += -ldevmapper -llvm-internal
 
-$(VERSIONED_SHLIB): %.$(LIB_SUFFIX).$(LIB_VERSION): $(interface)/%.$(LIB_SUFFIX)
+$(VERSIONED_SHLIB): %.$(LIB_SUFFIX).$(LIB_VERSION): %.$(LIB_SUFFIX)
 	rm -f $@
 	$(LN_S) $< $@
-	rm -f $(LIB_NAME).$(LIB_SUFFIX)
-	$(LN_S) $< $(LIB_NAME).$(LIB_SUFFIX)
 
 liblvm.cflow: $(SOURCES)
 	set -e; (echo -n "SOURCES += "; \


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

end of thread, other threads:[~2010-02-24 18:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-03 18:19 LVM2/liblvm Makefile.in mornfall
  -- strict thread matches above, loose matches on Subject: below --
2010-02-24 18:16 wysochanski
2009-07-22 20:29 agk
2009-03-08 18:10 wysochanski

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).