mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-22 03:09:22 +01:00
bashrc & zshrc: fix #36
pyenv should now always build Pythons with `--enable-shared`.
This commit is contained in:
parent
726d96e334
commit
843ac0a524
3
bashrc
3
bashrc
@ -545,6 +545,9 @@ alias purgeconfig="apt-get install --reinstall -o DPkg::options::=--force-confas
|
||||
# Send command output to http://sprunge.us `command|sprungeus`
|
||||
alias sprungeus="curl -F 'sprunge=<-' http://sprunge.us"
|
||||
|
||||
# Always build pythons with --enable-shared when using pyenv
|
||||
alias pyenv='CONFIGURE_OPTS="--enable-shared" PYTHON_CONFIGURE_OPTS="--enable-shared" command \pyenv'
|
||||
|
||||
# Allow custom aliases to be put in .aliases or .bash_aliases .
|
||||
|
||||
# .aliases
|
||||
|
3
zshrc
3
zshrc
@ -515,6 +515,9 @@ alias purgeconfig="apt-get install --reinstall -o DPkg::options::=--force-confas
|
||||
# Send command output to http://sprunge.us `command|sprungeus`
|
||||
alias sprungeus="curl -F 'sprunge=<-' http://sprunge.us"
|
||||
|
||||
# Always build pythons with --enable-shared when using pyenv
|
||||
alias pyenv='CONFIGURE_OPTS="--enable-shared" PYTHON_CONFIGURE_OPTS="--enable-shared" command \pyenv'
|
||||
|
||||
# .aliases
|
||||
if [ -f ~/.aliases ]; then
|
||||
source ~/.aliases
|
||||
|
Loading…
Reference in New Issue
Block a user