From 2232d222597cbbf2920ecb9eec6c4a5b3f93729c Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Tue, 20 Feb 2018 00:31:25 +0000 Subject: [PATCH] build: Fix some hardcoded paths --- scripts/post-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/post-install.sh b/scripts/post-install.sh index 4b14721d..0598e9e4 100644 --- a/scripts/post-install.sh +++ b/scripts/post-install.sh @@ -1,8 +1,8 @@ #!/bin/sh echo "-> gtk-update-icon-cache" -gtk-update-icon-cache --quiet --force --ignore-theme-index /usr/share/icons/hicolor > /dev/null +gtk-update-icon-cache --quiet --force --ignore-theme-index ${MESON_INSTALL_PREFIX}/share/icons/hicolor echo "-> update-desktop-database" -update-desktop-database --quiet /usr/share/applications > /dev/null +update-desktop-database --quiet ${MESON_INSTALL_PREFIX}/share/applications