From 549e2df1fccbcd893739e1d25ebf7dd0f1da23c5 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Fri, 3 Dec 2004 21:07:35 +0000 Subject: [PATCH] A minor bug fix to the installer (when installing `dict/cs', `dict' needn't exist). --- build/installer | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/installer b/build/installer index 99de43f0..b06ca509 100755 --- a/build/installer +++ b/build/installer @@ -11,7 +11,8 @@ done for d in $SH_INSTALL_RUNDIRS ; do echo "Installing to $DEST/$d" rm -rf $DEST/$d - cp -aL run/$d $DEST/$d + mkdir -p $DEST/$d + cp -aL run/$d/* $DEST/$d/ done echo "Installing config files..." for a in $SH_CONFIGS ; do -- 2.39.2