mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-23 21:35:29 +03:00
Use consistently $() instead of ${} for all Makefile variables,
thought both usage forms are correct.
This commit is contained in:
parent
d388f94c7f
commit
f309bd12c7
@ -1,5 +1,6 @@
|
|||||||
Version 2.02.62 -
|
Version 2.02.62 -
|
||||||
====================================
|
====================================
|
||||||
|
Use consistently $() instead of ${} for all Makefile variables.
|
||||||
Replace CFLOW_CMD only in make.tmpl and use it as variable elsewhere.
|
Replace CFLOW_CMD only in make.tmpl and use it as variable elsewhere.
|
||||||
Use $(top_builddir) for inclusion of make.tmpl in Makefiles.
|
Use $(top_builddir) for inclusion of make.tmpl in Makefiles.
|
||||||
Fix autoconf warning about ignored datarootdir.
|
Fix autoconf warning about ignored datarootdir.
|
||||||
|
@ -16,7 +16,7 @@ top_srcdir = @top_srcdir@
|
|||||||
top_builddir = @top_builddir@
|
top_builddir = @top_builddir@
|
||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
CLDFLAGS += -L${top_builddir}/tools
|
CLDFLAGS += -L$(top_builddir)/tools
|
||||||
|
|
||||||
SOURCES = dmeventd_lvm.c
|
SOURCES = dmeventd_lvm.c
|
||||||
|
|
||||||
|
@ -17,8 +17,8 @@ top_srcdir = @top_srcdir@
|
|||||||
top_builddir = @top_builddir@
|
top_builddir = @top_builddir@
|
||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
INCLUDES += -I${top_srcdir}/tools -I$(top_srcdir)/daemons/dmeventd/plugins/lvm2
|
INCLUDES += -I$(top_srcdir)/tools -I$(top_srcdir)/daemons/dmeventd/plugins/lvm2
|
||||||
CLDFLAGS += -L${top_builddir}/tools -L${top_builddir}/daemons/dmeventd/plugins/lvm2
|
CLDFLAGS += -L$(top_builddir)/tools -L$(top_builddir)/daemons/dmeventd/plugins/lvm2
|
||||||
|
|
||||||
SOURCES = dmeventd_mirror.c
|
SOURCES = dmeventd_mirror.c
|
||||||
|
|
||||||
|
@ -17,8 +17,8 @@ top_srcdir = @top_srcdir@
|
|||||||
top_builddir = @top_builddir@
|
top_builddir = @top_builddir@
|
||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
INCLUDES += -I${top_srcdir}/tools -I$(top_srcdir)/daemons/dmeventd/plugins/lvm2
|
INCLUDES += -I$(top_srcdir)/tools -I$(top_srcdir)/daemons/dmeventd/plugins/lvm2
|
||||||
CLDFLAGS += -L${top_builddir}/tools -L${top_builddir}/daemons/dmeventd/plugins/lvm2
|
CLDFLAGS += -L$(top_builddir)/tools -L$(top_builddir)/daemons/dmeventd/plugins/lvm2
|
||||||
|
|
||||||
SOURCES = dmeventd_snapshot.c
|
SOURCES = dmeventd_snapshot.c
|
||||||
|
|
||||||
|
@ -43,8 +43,8 @@ ifeq ("@BUILD_CMIRRORD@", "yes")
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
MAN8DM=dmsetup.8
|
MAN8DM=dmsetup.8
|
||||||
MAN5DIR=${mandir}/man5
|
MAN5DIR=$(mandir)/man5
|
||||||
MAN8DIR=${mandir}/man8
|
MAN8DIR=$(mandir)/man8
|
||||||
|
|
||||||
CLEAN_TARGETS=$(MAN5) $(MAN8) $(MAN8CLUSTER) $(FSADMMAN) $(MAN8DM)
|
CLEAN_TARGETS=$(MAN5) $(MAN8) $(MAN8CLUSTER) $(FSADMMAN) $(MAN8DM)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user