summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/gallium/drivers/r600/r600_llvm.c2
-rw-r--r--src/mesa/main/errors.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r600/r600_llvm.c b/src/gallium/drivers/r600/r600_llvm.c
index 0fa6ab17fe6..042193c990b 100644
--- a/src/gallium/drivers/r600/r600_llvm.c
+++ b/src/gallium/drivers/r600/r600_llvm.c
@@ -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;
diff --git a/src/mesa/main/errors.c b/src/mesa/main/errors.c
index 1c1d85d414d..5c6a393e46f 100644
--- a/src/mesa/main/errors.c
+++ b/src/mesa/main/errors.c
@@ -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");
}
}