summaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
Diffstat (limited to 'build-aux')
-rw-r--r--build-aux/meson-install-info.sh13
1 files changed, 6 insertions, 7 deletions
diff --git a/build-aux/meson-install-info.sh b/build-aux/meson-install-info.sh
index 8389b69..9efe63d 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}