diff options
author | Eric Anholt <eric@anholt.net> | 2012-05-16 09:09:18 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2012-05-29 12:39:42 -0700 |
commit | 7d7fe1b0376d5017c21351c0df8168b733801570 (patch) | |
tree | 623d5864af552ef5a8831ecf73267bb5257e02b4 /configs | |
parent | b284d4773b889d042a4ea086a28a7ea18de98f28 (diff) |
automake: Rename variables in sources.mak to be automake compatible.
*_SOURCES is reserved for files lists for particular automake targets.
Also, "-" in the variable names is not allowed.
Reviewed-by: Matt Turner <mattst88@gmail.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/autoconf.in | 2 | ||||
-rw-r--r-- | configs/default | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configs/autoconf.in b/configs/autoconf.in index 3c8f4c1eef..38f49a295c 100644 --- a/configs/autoconf.in +++ b/configs/autoconf.in @@ -47,7 +47,7 @@ DRI_CXXFLAGS = @DRI_CXXFLAGS@ DLOPEN_LIBS = @DLOPEN_LIBS@ # Source selection -MESA_ASM_SOURCES = @MESA_ASM_SOURCES@ +MESA_ASM_FILES = @MESA_ASM_FILES@ GLAPI_ASM_SOURCES = @GLAPI_ASM_SOURCES@ # Misc tools and flags diff --git a/configs/default b/configs/default index 40fa5e31ea..0f8b09fc2e 100644 --- a/configs/default +++ b/configs/default @@ -89,7 +89,7 @@ DRI_CFLAGS = $(CFLAGS) DRI_CXXFLAGS = $(CXXFLAGS) # Optional assembly language optimization files for libGL -MESA_ASM_SOURCES = +MESA_ASM_FILES = # GLw widget sources (Append "GLwMDrawA.c" here and add -lXm to GLW_LIB_DEPS in # order to build the Motif widget too) |