From cb2e9eede4ab408320225f0917d66779d565fa52 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Tue, 18 Jan 2011 21:36:51 +0000 Subject: [PATCH] Make sure the PKGDIR exists before we move stuff into it. --- tools/tools/sysbuild/sysbuild.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/tools/sysbuild/sysbuild.sh b/tools/tools/sysbuild/sysbuild.sh index b269da1ee1b..778895fb252 100644 --- a/tools/tools/sysbuild/sysbuild.sh +++ b/tools/tools/sysbuild/sysbuild.sh @@ -229,6 +229,7 @@ ports_build() ( if make install ${PORTS_OPTS} ; then if [ "x${PKG_DIR}" != "x" ] ; then make package ${PORTS_OPTS} + mkdir -p ${PKG_DIR} mv *.tbz ${PKG_DIR} fi else