-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Georgi Georgiev wrote: > It seems that the current xorg-server installs all modules in > /usr/lib/xorg/modules. Any idea why? It used to be /usr/lib/modules > until recently, and that's still where opengl-update symlinks stuff to, > and also where vnc and nvidia-glx put their own X modules.
Yeah, it's a more specific location. /usr/lib/modules is a very generic name that doesn't specify that only X modules go in it. Here's a quick patch for opengl-update -- we'll have to figure out a better solution for the future. Donnie -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFC+tGUXVaO67S1rtsRAk2kAKDKWYnA4hb8OBs+o1PAL4a6zfQIFQCgs4LS baBpcHsCP6Khc9rS/Okb+l4= =ogfd -----END PGP SIGNATURE-----
--- opengl-update.orig 2005-08-10 21:17:32.000000000 -0700 +++ opengl-update 2005-08-10 21:17:47.000000000 -0700 @@ -262,8 +262,8 @@ fi if [[ -e "${PREFIX}/${LIBDIR}/opengl/${GL_LOCAL}/extensions" ]]; then - mkdir -p ${DST_PREFIX}/${LIBDIR}/modules/extensions - pushd ${DST_PREFIX}/${LIBDIR}/modules/extensions &> /dev/null + mkdir -p ${DST_PREFIX}/${LIBDIR}/xorg/modules/extensions + pushd ${DST_PREFIX}/${LIBDIR}/xorg/modules/extensions &> /dev/null # First remove old symlinks for file in libglx.so libglx.a; do [[ -h ${file} ]] && rm -f ${file}