From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from <gentoo-commits+bounces-480144-garchives=archives.gentoo.org@lists.gentoo.org>) id 1SjfF6-0006s1-MY for garchives@archives.gentoo.org; Tue, 26 Jun 2012 23:32:21 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 271BDE01F1; Tue, 26 Jun 2012 23:31:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id E727BE01F1 for <gentoo-commits@lists.gentoo.org>; Tue, 26 Jun 2012 23:31:57 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 511211B401B for <gentoo-commits@lists.gentoo.org>; Tue, 26 Jun 2012 23:31:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 2B6D8E5432 for <gentoo-commits@lists.gentoo.org>; Tue, 26 Jun 2012 23:31:55 +0000 (UTC) From: "Davide Pesavento" <pesa@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" <pesa@gentoo.org> Message-ID: <1340753375.6a40b22aae376b9c53244cd40807d13af2f37c47.pesa@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: eclass/ X-VCS-Repository: proj/qt X-VCS-Files: eclass/qt5-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 6a40b22aae376b9c53244cd40807d13af2f37c47 X-VCS-Branch: master Date: Tue, 26 Jun 2012 23:31:55 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 35110596-d215-4626-b47e-ee1726e4cdd9 X-Archives-Hash: e4f5828d2a74f3314f8273b48d336ba4 commit: 6a40b22aae376b9c53244cd40807d13af2f37c47 Author: Davide Pesavento <davidepesa <AT> gmail <DOT> com> AuthorDate: Tue Jun 26 23:29:35 2012 +0000 Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org> CommitDate: Tue Jun 26 23:29:35 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/qt.git;a=3Dco= mmit;h=3D6a40b22a [qt5-build.eclass] Make sure the subdir exists before entering it. --- eclass/qt5-build.eclass | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index d362524..d388b47 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -388,6 +388,7 @@ qt5_symlink_tools_to_buildtree() { qt5_foreach_target_subdir() { local subdir for subdir in "${QT5_TARGET_SUBDIRS[@]}"; do + mkdir -p "${QT5_BUILD_DIR}/${subdir}" || die pushd "${QT5_BUILD_DIR}/${subdir}" >/dev/null || die einfo "[${subdir}] $*" "$@"