summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2018-12-14 13:12:27 +0100
committerMarian Csontos <mcsontos@redhat.com>2018-12-17 16:11:05 +0100
commit1f4179d1ed984111078059e6311df7eea08d71e7 (patch)
tree161360debef6af15599d688d67d92f98c2536e74
parentcdf315e158c29c2a123a8c76255d38bbf45f861a (diff)
downloadlvm2-1f4179d1ed984111078059e6311df7eea08d71e7.tar.gz
makefiles: correct libdm dependency
Correcting dependency tracking for libdm internal files. (cherry picked from commit 0f5bdd4d316c0651f170ba73eca244caf71d8e70)
-rw-r--r--libdm/make.tmpl.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/libdm/make.tmpl.in b/libdm/make.tmpl.in
index 451ef946a..c88505f18 100644
--- a/libdm/make.tmpl.in
+++ b/libdm/make.tmpl.in
@@ -277,11 +277,11 @@ LIB_VERSION_LVM := $(shell $(AWK) -F '.' '{printf "%s.%s",$$1,$$2}' $(top_srcdir
LIB_VERSION_DM := $(shell $(AWK) -F '.' '{printf "%s.%s",$$1,$$2}' $(top_srcdir)/VERSION_DM)
-INCLUDES += -I$(top_srcdir) -I$(srcdir) -I$(top_builddir)/include
+INCLUDES += -I$(srcdir) -I$(top_srcdir) -I$(top_builddir)/include
-DEPS = $(top_builddir)/make.tmpl $(top_srcdir)/VERSION \
- $(top_builddir)/Makefile
+DEPS = $(top_builddir)/libdm/make.tmpl $(top_srcdir)/VERSION \
+ $(top_builddir)/libdm/Makefile
OBJECTS = $(SOURCES:%.c=%.o) $(CXXSOURCES:%.cpp=%.o)
POTFILES = $(SOURCES:%.c=%.pot)