From 3dc82e90c3c69c855fdaedd51ec4465a3067fc5f Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Wed, 6 Jul 2022 00:56:48 +0300 Subject: [PATCH] build: don't install-info with DESTDIR --- build-aux/meson-install-info.sh | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/build-aux/meson-install-info.sh b/build-aux/meson-install-info.sh index 8389b69d..9efe63d8 100644 --- a/build-aux/meson-install-info.sh +++ b/build-aux/meson-install-info.sh @@ -3,13 +3,12 @@ infodir=$1 infofile=$2 - -echo "DESTDIR: ${DESTDIR}" > boo.txt -echo "XX ${MESON_INSTALL_DESTDIR_PREFIX}" >> boo.txt - - # Meson post-install script to update info metadata -install-info --info-dir ${MESON_INSTALL_DESTDIR_PREFIX}/${infodir} \ - ${MESON_INSTALL_DESTDIR_PREFIX}/${infodir}/${infofile} +# If DESTDIR is set, do _not_ install-info, since it's only a temporary +# install +if test -z "${DESTDIR}"; then + install-info --info-dir ${MESON_INSTALL_DESTDIR_PREFIX}/${infodir} \ + ${MESON_INSTALL_DESTDIR_PREFIX}/${infodir}/${infofile} +fi gzip --force ${MESON_INSTALL_DESTDIR_PREFIX}/${infodir}/${infofile}