diff options
author | Brian Evans <grknight@gentoo.org> | 2018-01-18 11:19:53 -0500 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2018-01-18 11:19:53 -0500 |
commit | dcdc33af90ded1a5609a1e3d4aa6ced36249ce90 (patch) | |
tree | 04208fcefdf8e2a82db3ff53c16ad5f46aa21846 /profiles/default/linux/amd64 | |
parent | dev-vcs/subversion: One line per dependency (diff) | |
download | gentoo-dcdc33af90ded1a5609a1e3d4aa6ced36249ce90.tar.gz gentoo-dcdc33af90ded1a5609a1e3d4aa6ced36249ce90.tar.bz2 gentoo-dcdc33af90ded1a5609a1e3d4aa6ced36249ce90.zip |
default/linux/amd64/17.1/profile.bashrc: Create a script to die when /lib is a symlink
Diffstat (limited to 'profiles/default/linux/amd64')
-rw-r--r-- | profiles/default/linux/amd64/17.1/profile.bashrc | 7 |
1 files changed, 7 insertions, 0 deletions
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 000000000000..e8fc95af773d --- /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 + |