From 80c3b2106c7f9c6184ea8a230b328364c8cfc1d0 Mon Sep 17 00:00:00 2001 From: Gilles Dartiguelongue Date: Mon, 23 Nov 2015 15:23:34 +0100 Subject: xdg-utils.eclass: add missing die --- eclass/xdg-utils.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eclass/xdg-utils.eclass') diff --git a/eclass/xdg-utils.eclass b/eclass/xdg-utils.eclass index 1f97623cbfd5..e8dacff2ba9d 100644 --- a/eclass/xdg-utils.eclass +++ b/eclass/xdg-utils.eclass @@ -54,10 +54,10 @@ xdg_environment_reset() { export XDG_CACHE_HOME="${T}/.cache" export XDG_RUNTIME_DIR="${T}/run" mkdir -p "${XDG_DATA_HOME}" "${XDG_CONFIG_HOME}" "${XDG_CACHE_HOME}" \ - "${XDG_RUNTIME_DIR}" + "${XDG_RUNTIME_DIR}" || die # This directory needs to be owned by the user, and chmod 0700 # http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html - chmod 0700 "${XDG_RUNTIME_DIR}" + chmod 0700 "${XDG_RUNTIME_DIR}" || die unset DBUS_SESSION_BUS_ADDRESS } -- cgit v1.2.3-18-g5258