diff options
author | Jon TURNEY <[email protected]> | 2012-03-13 19:31:19 +0000 |
---|---|---|
committer | Jon TURNEY <[email protected]> | 2012-07-13 12:44:05 +0100 |
commit | 1e48dfeee6007b87b45cb3817aa375aa46e9c249 (patch) | |
tree | cdd287341f3253c8c5c36a54c2627219754cacff | |
parent | defadf2b1540ae3d44e43132ea24b9bd9e24cf49 (diff) |
Rename X86-64_API -> X86_64_API
automake doesn't allow hyphens in variable names
Signed-off-by: Jon TURNEY <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Tested-by: Matt Turner <[email protected]>
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/mapi/glapi/sources.mak | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 22fe0ddf2ae..a0fd13feb4b 100644 --- a/configure.ac +++ b/configure.ac @@ -509,7 +509,7 @@ if test "x$enable_asm" = xyes; then x86_64) DEFINES="$DEFINES -DUSE_X86_64_ASM" MESA_ASM_FILES='$(X86_64_FILES)' - GLAPI_ASM_SOURCES='$(X86-64_API)' + GLAPI_ASM_SOURCES='$(X86_64_API)' AC_MSG_RESULT([yes, x86_64]) ;; sparc) diff --git a/src/mapi/glapi/sources.mak b/src/mapi/glapi/sources.mak index dfc6cc6db22..aa8a4d40a9a 100644 --- a/src/mapi/glapi/sources.mak +++ b/src/mapi/glapi/sources.mak @@ -12,7 +12,7 @@ GLAPI_SOURCES = \ X86_API = \ glapi_x86.S -X86-64_API = \ +X86_64_API = \ glapi_x86-64.S SPARC_API = \ |