From 92301b617d0c3c83735b8f090f32b7df2738d355 Mon Sep 17 00:00:00 2001 From: Mikhail Efremov Date: Wed, 25 Apr 2012 21:15:03 +0200 Subject: Replace mkdirhier with mkdir (bug #8776). --- engines/balou/scripts/balou-install-theme | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/balou/scripts/balou-install-theme b/engines/balou/scripts/balou-install-theme index 48cf93b7..0f889e41 100755 --- a/engines/balou/scripts/balou-install-theme +++ b/engines/balou/scripts/balou-install-theme @@ -40,7 +40,7 @@ targetdir="${2}" # ensure the target directory exists if test ! -d "${targetdir}"; then - mkdirhier "${targetdir}" >/dev/null 2>&1 + mkdir -p "${targetdir}" >/dev/null 2>&1 if test $? -ne 0; then echo "Unable to create themes directory ${targetdir}." >&2 exit 1 -- cgit v1.2.1