Author: baggins Date: Sun Jan 29 18:18:57 2012 New Revision: 12472 Modified: xinitrc-ng/trunk/xinitdefs Log: - partial revert, xinit.d scripts are supposed to set ENV vars they can't be run in subprocess, and must be /bin/sh scripts
Modified: xinitrc-ng/trunk/xinitdefs ============================================================================== --- xinitrc-ng/trunk/xinitdefs (original) +++ xinitrc-ng/trunk/xinitdefs Sun Jan 29 18:18:57 2012 @@ -77,7 +77,7 @@ # Run all system xinitrc shell scripts. for i in /etc/X11/xinit/xinitrc.d/*.sh ; do - [ -x "$i" ] && $i + [ -x "$i" ] && . "$i" done # This must be last line ! _______________________________________________ pld-cvs-commit mailing list [email protected] http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
