mesa: Use PACKAGE_BUGREPORT macro.
authorMatt Turner <mattst88@gmail.com>
Sat, 9 Mar 2013 08:28:09 +0000 (00:28 -0800)
committerMatt Turner <mattst88@gmail.com>
Wed, 13 Mar 2013 00:02:33 +0000 (17:02 -0700)
Reviewed-by: Eric Anholt <eric@anholt.net>
src/gallium/drivers/r600/r600_llvm.c
src/mesa/main/errors.c

index 0fa6ab1..042193c 100644 (file)
@@ -618,7 +618,7 @@ const char * r600_llvm_gpu_string(enum radeon_family family)
        default:
                gpu_family = "";
                fprintf(stderr, "Chip not supported by r600 llvm "
-                       "backend, please file a bug at bugs.freedesktop.org\n");
+                       "backend, please file a bug at " PACKAGE_BUGREPORT "\n");
                break;
        }
        return gpu_family;
index 1c1d85d..5c6a393 100644 (file)
@@ -849,7 +849,7 @@ _mesa_problem( const struct gl_context *ctx, const char *fmtString, ... )
       va_end( args );
       fprintf(stderr, "Mesa %s implementation error: %s\n",
               PACKAGE_VERSION, str);
-      fprintf(stderr, "Please report at bugs.freedesktop.org\n");
+      fprintf(stderr, "Please report at " PACKAGE_BUGREPORT "\n");
    }
 }