mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +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 -
|
||||
==================================
|
||||
Add missing configurable prefix to configuration file installation directory.
|
||||
|
||||
Version 2.02.170 - 13th April 2017
|
||||
==================================
|
||||
|
@ -48,8 +48,8 @@ install_localconf: $(CONFLOCAL)
|
||||
fi
|
||||
|
||||
install_profiles: $(PROFILES)
|
||||
$(INSTALL_DIR) $(DESTDIR)$(DEFAULT_PROFILE_DIR)
|
||||
$(INSTALL_DATA) $(PROFILES) $(DESTDIR)$(DEFAULT_PROFILE_DIR)/
|
||||
$(INSTALL_DIR) $(profiledir)
|
||||
$(INSTALL_DATA) $(PROFILES) $(profiledir)/
|
||||
|
||||
install_lvm2: install_conf install_localconf install_profiles
|
||||
|
||||
|
@ -82,7 +82,8 @@ udev_prefix = @udev_prefix@
|
||||
sysconfdir = @sysconfdir@
|
||||
rootdir = $(DESTDIR)/
|
||||
bindir = $(DESTDIR)@bindir@
|
||||
confdir = $(DESTDIR)@CONFDIR@/lvm
|
||||
confdir = $(DESTDIR)$(exec_prefix)@CONFDIR@/lvm
|
||||
profiledir = $(confdir)/@DEFAULT_PROFILE_SUBDIR@
|
||||
includedir = $(DESTDIR)@includedir@
|
||||
libdir = $(DESTDIR)@libdir@
|
||||
libexecdir = $(DESTDIR)@libexecdir@
|
||||
|
Loading…
Reference in New Issue
Block a user