mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-18 10:04:20 +03:00
conf: Add missing prefix to installation directory.
Our Makefiles also support systems that set the installation prefix at configuration time - the use of DESTDIR is not required.
This commit is contained in:
parent
ae7f696d53
commit
4547218a7d
@ -1,5 +1,6 @@
|
|||||||
Version 2.02.171 -
|
Version 2.02.171 -
|
||||||
==================================
|
==================================
|
||||||
|
Add missing configurable prefix to configuration file installation directory.
|
||||||
|
|
||||||
Version 2.02.170 - 13th April 2017
|
Version 2.02.170 - 13th April 2017
|
||||||
==================================
|
==================================
|
||||||
|
@ -48,8 +48,8 @@ install_localconf: $(CONFLOCAL)
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
install_profiles: $(PROFILES)
|
install_profiles: $(PROFILES)
|
||||||
$(INSTALL_DIR) $(DESTDIR)$(DEFAULT_PROFILE_DIR)
|
$(INSTALL_DIR) $(profiledir)
|
||||||
$(INSTALL_DATA) $(PROFILES) $(DESTDIR)$(DEFAULT_PROFILE_DIR)/
|
$(INSTALL_DATA) $(PROFILES) $(profiledir)/
|
||||||
|
|
||||||
install_lvm2: install_conf install_localconf install_profiles
|
install_lvm2: install_conf install_localconf install_profiles
|
||||||
|
|
||||||
|
@ -82,7 +82,8 @@ udev_prefix = @udev_prefix@
|
|||||||
sysconfdir = @sysconfdir@
|
sysconfdir = @sysconfdir@
|
||||||
rootdir = $(DESTDIR)/
|
rootdir = $(DESTDIR)/
|
||||||
bindir = $(DESTDIR)@bindir@
|
bindir = $(DESTDIR)@bindir@
|
||||||
confdir = $(DESTDIR)@CONFDIR@/lvm
|
confdir = $(DESTDIR)$(exec_prefix)@CONFDIR@/lvm
|
||||||
|
profiledir = $(confdir)/@DEFAULT_PROFILE_SUBDIR@
|
||||||
includedir = $(DESTDIR)@includedir@
|
includedir = $(DESTDIR)@includedir@
|
||||||
libdir = $(DESTDIR)@libdir@
|
libdir = $(DESTDIR)@libdir@
|
||||||
libexecdir = $(DESTDIR)@libexecdir@
|
libexecdir = $(DESTDIR)@libexecdir@
|
||||||
|
Loading…
x
Reference in New Issue
Block a user