From 9ca51db1581f64556b2d5fa9e56573d09898241c Mon Sep 17 00:00:00 2001 From: heck Date: Thu, 16 Sep 2021 18:51:49 +0200 Subject: [PATCH] PREFIX=$HOME/local --- bash_profile.d/00_base.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bash_profile.d/00_base.sh b/bash_profile.d/00_base.sh index 2efdd79..8287306 100644 --- a/bash_profile.d/00_base.sh +++ b/bash_profile.d/00_base.sh @@ -1,6 +1,6 @@ #!/bin/bash -export PREFIX=/Users/heck/local/ +export PREFIX=$HOME/local/ if [ $(uname) == "Linux" ]; then { export LD_LIBRARY_PATH=$PREFIX/lib/:$LD_LIBRARY_PATH @@ -18,19 +18,19 @@ if [ $(uname) == "Darwin" ]; then { alias ll='l -a' alias lt='l -at' alias ltr='l -art' + #macports + export PATH=/opt/local/bin:/opt/local/sbin:$PATH + #cmake + export PATH="/Applications/CMake.app/Contents/bin":$PATH + } fi ## PATH -#macports -export PATH=/opt/local/bin:/opt/local/sbin:$PATH -#cmake -export PATH="/Applications/CMake.app/Contents/bin":$PATH #prefix export PATH=$PREFIX/bin:$PATH #rust export PATH="$HOME/.cargo/bin:$PATH" - export LANG=en_US.UTF-8 export TERM=xterm export EDITOR=vim