Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

profile: Added debian library path #3996

Open
wants to merge 1 commit into
base: testing
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions woof-code/rootfs-skeleton/etc/profile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
#110804 fix double-login when exit from X, allow /etc/profile to complete. see also "echo -n '# '" in /usr/bin/xwin at exit.

PATH="/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/root/my-applications/bin:/usr/games"

if [ -f /lib64/libc.so.6 ] ; then #slackware64
LD_LIBRARY_PATH="/lib64:/usr/lib64:/root/my-applications/lib:/usr/local/lib"
LD_LIBRARY_PATH="/lib64:/usr/lib64:/usr/lib/x86_64-linux-gnu:/root/my-applications/lib:/usr/local/lib"
else
LD_LIBRARY_PATH="/lib:/usr/lib:/root/my-applications/lib:/usr/local/lib"
LD_LIBRARY_PATH="/lib:/usr/lib:/usr/lib/i386-linux-gnu:/root/my-applications/lib:/usr/local/lib"
fi

export PATH LD_LIBRARY_PATH

export GDK_USE_XFT=1 #for gtk...
Expand Down