glsl2: Print the linking info log in the stand-alone compiler
diff --git a/src/glsl/main.cpp b/src/glsl/main.cpp
index 16bbc8c..9bed2c6 100644
--- a/src/glsl/main.cpp
+++ b/src/glsl/main.cpp
@@ -266,6 +266,9 @@
    if ((status == EXIT_SUCCESS) && do_link)  {
       link_shaders(whole_program);
       status = (whole_program->LinkStatus) ? EXIT_SUCCESS : EXIT_FAILURE;
+
+      if (strlen(whole_program->InfoLog) > 0)
+	 printf("Info log for linking:\n%s\n", whole_program->InfoLog);
    }
 
    talloc_free(whole_program);