]> sourceware.org Git - lvm2.git/commitdiff
Use consistently $() instead of ${} for all Makefile variables,
authorZdenek Kabelac <zkabelac@redhat.com>
Thu, 4 Mar 2010 09:56:01 +0000 (09:56 +0000)
committerZdenek Kabelac <zkabelac@redhat.com>
Thu, 4 Mar 2010 09:56:01 +0000 (09:56 +0000)
thought both usage forms are correct.

WHATS_NEW
daemons/dmeventd/plugins/lvm2/Makefile.in
daemons/dmeventd/plugins/mirror/Makefile.in
daemons/dmeventd/plugins/snapshot/Makefile.in
man/Makefile.in

index a8094578def05c87814a919686791b5c14dc8e7a..7ba09e8c867372ea75e6b33f48214bd5c3773d0b 100644 (file)
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -1,5 +1,6 @@
 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.
   Use $(top_builddir) for inclusion of make.tmpl in Makefiles.
   Fix autoconf warning about ignored datarootdir.
index 96c60e0897f86a9b6b34c2c892b5ae0c1335fbdc..af6807b3780d0a19400a8ea47720b7e517b45e0f 100644 (file)
@@ -16,7 +16,7 @@ top_srcdir = @top_srcdir@
 top_builddir = @top_builddir@
 VPATH = @srcdir@
 
-CLDFLAGS += -L${top_builddir}/tools
+CLDFLAGS += -L$(top_builddir)/tools
 
 SOURCES = dmeventd_lvm.c
 
index a6af47f4f191212f5c54c745dc58514f9b3eec6e..bdb49d135b4d8dc62329ce66f25bfa82bbcd8ea2 100644 (file)
@@ -17,8 +17,8 @@ top_srcdir = @top_srcdir@
 top_builddir = @top_builddir@
 VPATH = @srcdir@
 
-INCLUDES += -I${top_srcdir}/tools -I$(top_srcdir)/daemons/dmeventd/plugins/lvm2
-CLDFLAGS += -L${top_builddir}/tools -L${top_builddir}/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
 
 SOURCES = dmeventd_mirror.c
 
index 133459d950edcde9f6f4429e7db9f6a37bf62872..4b203a0ac30eee53f9e15726af7e0dfb6b2e5229 100644 (file)
@@ -17,8 +17,8 @@ top_srcdir = @top_srcdir@
 top_builddir = @top_builddir@
 VPATH = @srcdir@
 
-INCLUDES += -I${top_srcdir}/tools -I$(top_srcdir)/daemons/dmeventd/plugins/lvm2
-CLDFLAGS += -L${top_builddir}/tools -L${top_builddir}/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
 
 SOURCES = dmeventd_snapshot.c
 
index f49d4c8ea62a7779727e3288d254386b27ffdd2b..332f07fe67fa6dd00c471228414611e40744b58b 100644 (file)
@@ -43,8 +43,8 @@ ifeq ("@BUILD_CMIRRORD@", "yes")
 endif
 
 MAN8DM=dmsetup.8
-MAN5DIR=${mandir}/man5
-MAN8DIR=${mandir}/man8
+MAN5DIR=$(mandir)/man5
+MAN8DIR=$(mandir)/man8
 
 CLEAN_TARGETS=$(MAN5) $(MAN8) $(MAN8CLUSTER) $(FSADMMAN) $(MAN8DM)
 
This page took 0.040836 seconds and 5 git commands to generate.