Generate common.sh with paths from configure
The common.sh script assumed that it was either being run from in-tree or was installed under /usr/libexec/zfs. If this was not the case, because of say the default --prefix=/usr/local, then the paths would be wrong. To fix this common.sh is now generated from common.sh.in with the correct path information provided at configure time.
This commit is contained in:
parent
0f237a4379
commit
26e61dd074
|
@ -82,6 +82,7 @@ AC_CONFIG_FILES([
|
|||
module/zcommon/Makefile
|
||||
module/zfs/Makefile
|
||||
scripts/Makefile
|
||||
scripts/common.sh
|
||||
zfs.spec
|
||||
zfs-modules.spec
|
||||
])
|
||||
|
|
|
@ -26,20 +26,27 @@ RAID10S=()
|
|||
RAIDZS=()
|
||||
RAIDZ2S=()
|
||||
|
||||
prefix=@prefix@
|
||||
exec_prefix=@exec_prefix@
|
||||
libexecdir=@libexecdir@
|
||||
pkglibexecdir=${libexecdir}/@PACKAGE@
|
||||
bindir=@bindir@
|
||||
sbindir=@sbindir@
|
||||
|
||||
ETCDIR=${ETCDIR:-/etc}
|
||||
DEVDIR=${DEVDIR:-/dev/disk/zpool}
|
||||
ZPOOLDIR=${ZPOOLDIR:-/usr/libexec/zfs/zpool-config}
|
||||
ZPOOLDIR=${ZPOOLDIR:-${pkglibexecdir}/zpool-config}
|
||||
|
||||
ZDB=${ZDB:-/usr/sbin/zdb}
|
||||
ZFS=${ZFS:-/usr/sbin/zfs}
|
||||
ZINJECT=${ZINJECT:-/usr/sbin/zinject}
|
||||
ZPOOL=${ZPOOL:-/usr/sbin/zpool}
|
||||
ZPOOL_ID=${ZPOOL_ID:-/usr/bin/zpool_id}
|
||||
ZTEST=${ZTEST:-/usr/sbin/ztest}
|
||||
ZDB=${ZDB:-${sbindir}/zdb}
|
||||
ZFS=${ZFS:-${sbindir}/zfs}
|
||||
ZINJECT=${ZINJECT:-${sbindir}/zinject}
|
||||
ZPOOL=${ZPOOL:-${sbindir}/zpool}
|
||||
ZPOOL_ID=${ZPOOL_ID:-${bindir}/zpool_id}
|
||||
ZTEST=${ZTEST:-${sbindir}/ztest}
|
||||
|
||||
COMMON_SH=${COMMON_SH:-/usr/libexec/zfs/common.sh}
|
||||
ZFS_SH=${ZFS_SH:-/usr/libexec/zfs/zfs.sh}
|
||||
ZPOOL_CREATE_SH=${ZPOOL_CREATE_SH:-/usr/libexec/zfs/zpool-create.sh}
|
||||
COMMON_SH=${COMMON_SH:-${pkglibexecdir}/common.sh}
|
||||
ZFS_SH=${ZFS_SH:-${pkglibexecdir}/zfs.sh}
|
||||
ZPOOL_CREATE_SH=${ZPOOL_CREATE_SH:-${pkglibexecdir}/zpool-create.sh}
|
||||
|
||||
LDMOD=${LDMOD:-/sbin/modprobe}
|
||||
LSMOD=${LSMOD:-/sbin/lsmod}
|
|
@ -7,8 +7,6 @@ basedir="$(dirname $0)"
|
|||
SCRIPT_COMMON=common.sh
|
||||
if [ -f "${basedir}/${SCRIPT_COMMON}" ]; then
|
||||
. "${basedir}/${SCRIPT_COMMON}"
|
||||
elif [ -f /usr/libexec/zfs/${SCRIPT_COMMON} ]; then
|
||||
. /usr/libexec/zfs/${SCRIPT_COMMON}
|
||||
else
|
||||
echo "Missing helper script ${SCRIPT_COMMON}" && exit 1
|
||||
fi
|
||||
|
|
|
@ -7,8 +7,6 @@ basedir="$(dirname $0)"
|
|||
SCRIPT_COMMON=common.sh
|
||||
if [ -f "${basedir}/${SCRIPT_COMMON}" ]; then
|
||||
. "${basedir}/${SCRIPT_COMMON}"
|
||||
elif [ -f /usr/libexec/zfs/${SCRIPT_COMMON} ]; then
|
||||
. /usr/libexec/zfs/${SCRIPT_COMMON}
|
||||
else
|
||||
echo "Missing helper script ${SCRIPT_COMMON}" && exit 1
|
||||
fi
|
||||
|
|
|
@ -5,8 +5,6 @@ basedir="$(dirname $0)"
|
|||
SCRIPT_COMMON=common.sh
|
||||
if [ -f "${basedir}/${SCRIPT_COMMON}" ]; then
|
||||
. "${basedir}/${SCRIPT_COMMON}"
|
||||
elif [ -f /usr/libexec/zfs/${SCRIPT_COMMON} ]; then
|
||||
. /usr/libexec/zfs/${SCRIPT_COMMON}
|
||||
else
|
||||
echo "Missing helper script ${SCRIPT_COMMON}" && exit 1
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue