mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
Improve OCF dir support
Add --with-ocfdir configurable option. Fix superfluous /usr in ocf_scriptdir instalation path.
This commit is contained in:
parent
a592016297
commit
349da06cfa
@ -1,5 +1,7 @@
|
||||
Version 2.02.80 -
|
||||
====================================
|
||||
Fix superfluous /usr in ocf_scriptdir instalation path.
|
||||
Add --with-ocfdir configurable option.
|
||||
Add aclocal.m4 (for pkgconfig).
|
||||
Fix memory leak in filter creation error path.
|
||||
Add missing tests in _setup_task().
|
||||
|
@ -368,6 +368,10 @@ AC_ARG_ENABLE(ocf,
|
||||
[enable Open Cluster Framework (OCF) compliant resource agents]),
|
||||
OCF=$enableval, OCF=no)
|
||||
AC_MSG_RESULT($OCF)
|
||||
AC_ARG_WITH(ocfdir,
|
||||
AC_HELP_STRING([--with-ocfdir=DIR],
|
||||
[install OCF files in DIR [[PREFIX/lib/ocf/resource.d/lvm2]]]),
|
||||
OCFDIR=$withval, OCFDIR='${prefix}/lib/ocf/resource.d/lvm2')
|
||||
|
||||
################################################################################
|
||||
dnl -- Init pkg-config with dummy invokation:
|
||||
@ -1328,6 +1332,7 @@ AC_SUBST(LVM_RELEASE)
|
||||
AC_SUBST(LVM_RELEASE_DATE)
|
||||
AC_SUBST(MIRRORS)
|
||||
AC_SUBST(OCF)
|
||||
AC_SUBST(OCFDIR)
|
||||
AC_SUBST(REPLICATORS)
|
||||
AC_SUBST(MSGFMT)
|
||||
AC_SUBST(PKGCONFIG)
|
||||
|
@ -65,7 +65,7 @@ staticdir = $(DESTDIR)@STATICDIR@
|
||||
udevdir = $(DESTDIR)@udevdir@
|
||||
pkgconfigdir = $(usrlibdir)/pkgconfig
|
||||
initdir = $(DESTDIR)@sysconfdir@/rc.d/init.d
|
||||
ocf_scriptdir = $(DESTDIR)@prefix@/usr/lib/ocf/resource.d/lvm2
|
||||
ocf_scriptdir = $(DESTDIR)@OCFDIR@
|
||||
|
||||
USRLIB_RELPATH = $(shell echo $(abspath $(usrlibdir) $(libdir)) | \
|
||||
$(AWK) -f $(top_srcdir)/scripts/relpath.awk)
|
||||
|
Loading…
Reference in New Issue
Block a user