[Mesa-dev] [PATCH 03/18] mesa: Use PACKAGE_BUGREPORT macro.
Matt Turner
mattst88 at gmail.com
Sun Mar 10 20:24:44 PDT 2013
---
src/gallium/drivers/r600/r600_llvm.c | 2 +-
src/mesa/main/errors.c | 2 +-
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 c7aa45f..75236b2 100644
--- a/src/gallium/drivers/r600/r600_llvm.c
+++ b/src/gallium/drivers/r600/r600_llvm.c
@@ -619,7 +619,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 0635216..c87d23f 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");
}
}
--
1.7.8.6
More information about the mesa-dev
mailing list