[Xfce4-commits] <xfce4-session:master> Replace mkdirhier with mkdir (bug #8776).
Nick Schermer
noreply at xfce.org
Wed Apr 25 21:16:01 CEST 2012
Updating branch refs/heads/master
to 92301b617d0c3c83735b8f090f32b7df2738d355 (commit)
from 29a02132f6d0e3fa4a0210bd8330d42974f1832a (commit)
commit 92301b617d0c3c83735b8f090f32b7df2738d355
Author: Mikhail Efremov <mikhefr at gmail.com>
Date: Wed Apr 25 21:15:03 2012 +0200
Replace mkdirhier with mkdir (bug #8776).
engines/balou/scripts/balou-install-theme | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/engines/balou/scripts/balou-install-theme b/engines/balou/scripts/balou-install-theme
index 48cf93b..0f889e4 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
More information about the Xfce4-commits
mailing list