mesa: Use PACKAGE_BUGREPORT macro.

Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
Matt Turner
2013-03-09 00:28:09 -08:00
parent 9065bab37e
commit e59fc3faa5
2 changed files with 2 additions and 2 deletions

View File

@@ -618,7 +618,7 @@ const char * r600_llvm_gpu_string(enum radeon_family family)
default: default:
gpu_family = ""; gpu_family = "";
fprintf(stderr, "Chip not supported by r600 llvm " 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; break;
} }
return gpu_family; return gpu_family;

View File

@@ -849,7 +849,7 @@ _mesa_problem( const struct gl_context *ctx, const char *fmtString, ... )
va_end( args ); va_end( args );
fprintf(stderr, "Mesa %s implementation error: %s\n", fprintf(stderr, "Mesa %s implementation error: %s\n",
PACKAGE_VERSION, str); PACKAGE_VERSION, str);
fprintf(stderr, "Please report at bugs.freedesktop.org\n"); fprintf(stderr, "Please report at " PACKAGE_BUGREPORT "\n");
} }
} }