From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 042E1138331 for ; Sat, 3 Sep 2016 11:06:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BBA3A21C060; Sat, 3 Sep 2016 11:06:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 13D5421C03E for ; Sat, 3 Sep 2016 11:06:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0F114340751 for ; Sat, 3 Sep 2016 11:06:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A57F92477 for ; Sat, 3 Sep 2016 11:06:06 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1472900757.5a5c86a41bc4e4ae8e367dd4407116f44d8d6e89.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/baselayout/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/baselayout/baselayout-2.3.ebuild X-VCS-Directories: sys-apps/baselayout/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5a5c86a41bc4e4ae8e367dd4407116f44d8d6e89 X-VCS-Branch: master Date: Sat, 3 Sep 2016 11:06:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0a73f49f-4082-47e4-8a5d-4379530e7e1c X-Archives-Hash: 0b592b381198feedb5ba587d319bfeb5 commit: 5a5c86a41bc4e4ae8e367dd4407116f44d8d6e89 Author: Michał Górny gentoo org> AuthorDate: Sat Sep 3 10:43:27 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Sep 3 11:05:57 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a5c86a4 sys-apps/baselayout: Fix SYMLINK_LIB=no to create lib dir instead of sym Fix the 'else' branch of SYMLINK_LIB=no code to create 'lib' as a directory rather than a symlink. sys-apps/baselayout/baselayout-2.3.ebuild | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sys-apps/baselayout/baselayout-2.3.ebuild b/sys-apps/baselayout/baselayout-2.3.ebuild index 5c4e7c1..b4e82d2 100644 --- a/sys-apps/baselayout/baselayout-2.3.ebuild +++ b/sys-apps/baselayout/baselayout-2.3.ebuild @@ -106,9 +106,7 @@ multilib_layout() { else # nothing exists, so just set it up sanely ewarn "Initializing ${prefix}lib as a dir" - mkdir -p "${prefix}" || die - rm -f "${prefix}lib" || die - ln -s ${def_libdir} "${prefix}lib" || die + mkdir -p "${prefix}lib" || die fi fi done