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 A4447138206 for ; Thu, 18 Jan 2018 16:20:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F3A04E088A; Thu, 18 Jan 2018 16:20:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CFA48E088A for ; Thu, 18 Jan 2018 16:20:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A264F335C37 for ; Thu, 18 Jan 2018 16:20:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3750C148 for ; Thu, 18 Jan 2018 16:20:08 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1516292393.dcdc33af90ded1a5609a1e3d4aa6ced36249ce90.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/default/linux/amd64/17.1/ X-VCS-Repository: repo/gentoo X-VCS-Files: profiles/default/linux/amd64/17.1/profile.bashrc X-VCS-Directories: profiles/default/linux/amd64/17.1/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: dcdc33af90ded1a5609a1e3d4aa6ced36249ce90 X-VCS-Branch: master Date: Thu, 18 Jan 2018 16:20:08 +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: c4161d15-0184-408d-9206-622a6c8e64e5 X-Archives-Hash: e54247b81279880eb7fbffddc6a3d09d commit: dcdc33af90ded1a5609a1e3d4aa6ced36249ce90 Author: Brian Evans gentoo org> AuthorDate: Thu Jan 18 16:19:53 2018 +0000 Commit: Brian Evans gentoo org> CommitDate: Thu Jan 18 16:19:53 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcdc33af default/linux/amd64/17.1/profile.bashrc: Create a script to die when /lib is a symlink profiles/default/linux/amd64/17.1/profile.bashrc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/profiles/default/linux/amd64/17.1/profile.bashrc b/profiles/default/linux/amd64/17.1/profile.bashrc new file mode 100644 index 00000000000..e8fc95af773 --- /dev/null +++ b/profiles/default/linux/amd64/17.1/profile.bashrc @@ -0,0 +1,7 @@ +if [[ -L ${ROOT%/}/lib || -L ${ROOT%/}/usr/lib ]] ; then + eerror "Please follow the instructions in the news item:" + eerror "2017-12-26-experimental-amd64-17-1-profiles" + eerror "or choose the 17.0 profile." + die "ERROR: 17.1 migration has not been performed!!" +fi +