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 0fa6ab17fe6d8443ab5bb4e8230785633f7ea70e..042193c990b3c173fa5b7929402095f661380892 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 1c1d85d414d41257338fd0b3e42e5fb8f7c52b7f..5c6a393e46fc6fb9c22f8d265b4f9d3a764ace51 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");
    }
 }