Skip to content

Instantly share code, notes, and snippets.

@Lascorbe
Created October 21, 2013 13:34
Show Gist options
  • Select an option

  • Save Lascorbe/7083973 to your computer and use it in GitHub Desktop.

Select an option

Save Lascorbe/7083973 to your computer and use it in GitHub Desktop.
PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/git/bin:/usr/local/sbin
# Add some more custom software to PATH.
PATH=$HOME/.rvm/bin:$PATH
export PATH
# Make sure pkg-config can find self-compiled software
# and libraries (installed to ~/usr)
PKG_CONFIG_PATH=$PKG_CONFIG_PATH:~/usr/lib/pkgconfig
export PKG_CONFIG_PATH
# Add custom compiled libraries to library search path.
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/usr/lib
export LD_LIBRARY_PATH
# Add custom compiled libraries to library run path.
LD_RUN_PATH=$LD_RUN_PATH:~/usr/lib
export LD_RUN_PATH
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment