提示コードの.profile
ファイル(一部抜粋)コード部ですが下記のコードのように参考サイトを参考に下部に環境変数を設定したのですが上手く反映されません。 source profile
コマンドを実行しました。これはなぜなのでしょうか?
参考サイト:https://stackoverflow.com/questions/52592309/0110-error-glsl-3-30-is-not-supported-ubuntu-18-04-c
参考サイト: https://www.early2home.com/blog/os/linux/post-1214.html
for i in /etc/profile.d/*.sh /etc/profile.d/sh.local ; do if [ -r "$i" ]; then if [ "${-#*i}" != "$-" ]; then . "$i" else . "$i" >/dev/null fi fi done unset i unset -f pathmunge if [ -n "${BASH_VERSION-}" ] ; then if [ -f /etc/bashrc ] ; then # Bash login shells run only /etc/profile # Bash non-login shells run only /etc/bashrc # Check for double sourcing is done in /etc/bashrc. . /etc/bashrc fi fi /////////////////////////////////////////////////////// export MESA_GL_VERSION_OVERRIDE=4.2 ///////////////////////////////////////////////////////