On Tue, 2013-03-12 at 14:21 +0100, Niels Terp wrote: > And much to my surprise, even after a munual "sh > /etc/profile.d/xorg.sh" the variables STILL don't contain anything.
That will *never* work. Running "sh filename" will simply start a new process which reads the file, sets those variables in that process, then exits. If you want to read the file into the current shell, use "source filename" or ". filename" instead. Simon. -- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
