]> gitweb.factorcode.org Git - factor.git/commitdiff
opengl.capabilities: Make it more explicit that you should put the
authorDoug Coleman <doug.coleman@gmail.com>
Thu, 9 Apr 2015 20:05:20 +0000 (15:05 -0500)
committerDoug Coleman <doug.coleman@gmail.com>
Thu, 9 Apr 2015 20:05:20 +0000 (15:05 -0500)
directory that contains opengl not the library name itself.

basis/opengl/capabilities/capabilities.factor

index c7e2b9efb4d6b356cf5c17a788df61124129e371..c7a7afc1de8430541cfd64f7d69bdc4914518bc1 100644 (file)
@@ -42,7 +42,7 @@ IN: opengl.capabilities
     "Required OpenGL version " % % " not supported (" % gl-version "(null)" or % " available)" %
     os linux = [
         "\nIf you have several libGL.so installed, Factor tried the first one in: ldconfig -p | grep libGL.so$" %
-        "\nYou can change the library used like so: LD_LIBRARY_PATH=/usr/lib/fglrx ./factor" %
+        "\nYou can change the library used like so: LD_LIBRARY_PATH=/usr/lib/fglrx/ ./factor" %
     ] when ;
 
 : require-gl-version ( version -- )