diff options
author | Dylan Noblesmith <[email protected]> | 2012-04-13 20:36:39 +0000 |
---|---|---|
committer | Dylan Noblesmith <[email protected]> | 2012-04-29 11:17:47 +0000 |
commit | e4c97f1e607f857fb7f397f9e00f37c00ffff295 (patch) | |
tree | e744ae390a63e4cef76d0184aa30b376a87bb613 /src/gallium/drivers/r600 | |
parent | e372aa69494469d6c43c315b5c39355dece65dcf (diff) |
autoconf: pass -Wall to automake
And fix these warning that appear at autoreconf time:
"`:='-style assignments are not portable"
v2: Fix the recently-converted-to-automake r600.
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r-- | src/gallium/drivers/r600/Makefile.sources | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r600/Makefile.sources b/src/gallium/drivers/r600/Makefile.sources index a920b930be8..b7b0d50b637 100644 --- a/src/gallium/drivers/r600/Makefile.sources +++ b/src/gallium/drivers/r600/Makefile.sources @@ -1,4 +1,4 @@ -C_SOURCES := \ +C_SOURCES = \ r600_asm.c \ r600_blit.c \ r600_buffer.c \ @@ -16,4 +16,4 @@ C_SOURCES := \ r600_translate.c \ r600_state_common.c -LLVM_C_SOURCES := r600_llvm.c +LLVM_C_SOURCES = r600_llvm.c |