commit:     724530ca465628f494ba6b44a6caf6615557bc9e
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 15 16:12:51 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Dec 16 08:49:12 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=724530ca

dev-python/pycuda: Check BUILD_DIR existance before creation

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=568290

Package-Manager: portage-2.2.26
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 dev-python/pycuda/pycuda-2014.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pycuda/pycuda-2014.1.ebuild 
b/dev-python/pycuda/pycuda-2014.1.ebuild
index bfb7af9..5498282 100644
--- a/dev-python/pycuda/pycuda-2014.1.ebuild
+++ b/dev-python/pycuda/pycuda-2014.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -52,7 +52,7 @@ python_configure() {
        local myopts=()
        use opengl && myopts+=( --cuda-enable-gl )
 
-       mkdir "${BUILD_DIR}" || die
+       [[ -d "${BUILD_DIR}" ]] || mkdir "${BUILD_DIR}" || die
        cd "${BUILD_DIR}" || die
        [[ -e ./siteconf.py ]] && rm -f ./siteconf.py
        "${EPYTHON}" "${S}"/configure.py \

Reply via email to