diff options
author | Chijun Sima <simachijun@outlook.com> | 2017-02-19 08:19:20 +0000 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2017-03-24 15:46:39 +0100 |
commit | 3d2e03f8172ead69e0946b764cf43cde4a4f0e3e (patch) | |
tree | ad2a98ae6c4d918d6464ddddd13257529bc9781f /tools/testing/selftests/powerpc/Makefile | |
parent | 1fb95c69e71d751675a67b0f49fc95a2057b0998 (diff) | |
download | blackbird-op-linux-3d2e03f8172ead69e0946b764cf43cde4a4f0e3e.tar.gz blackbird-op-linux-3d2e03f8172ead69e0946b764cf43cde4a4f0e3e.zip |
tools/testing/selftests/powerpc: remove redundant CFLAGS in Makefile: "-Wall -O2 -Wall" -> "-O2 -Wall"
There are repeated compiler flags "-Wall" in the Makefile.
The redundant compiler flag appears to have been there from the
introduction of the Makefile.
Signed-off-by: Chijun Sima <simachijun@qq.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'tools/testing/selftests/powerpc/Makefile')
-rw-r--r-- | tools/testing/selftests/powerpc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/powerpc/Makefile b/tools/testing/selftests/powerpc/Makefile index 1c5d0575802e..9a4841219f93 100644 --- a/tools/testing/selftests/powerpc/Makefile +++ b/tools/testing/selftests/powerpc/Makefile @@ -8,7 +8,7 @@ ifeq ($(ARCH),powerpc) GIT_VERSION = $(shell git describe --always --long --dirty || echo "unknown") -CFLAGS := -std=gnu99 -Wall -O2 -Wall -Werror -DGIT_VERSION='"$(GIT_VERSION)"' -I$(CURDIR)/include $(CFLAGS) +CFLAGS := -std=gnu99 -O2 -Wall -Werror -DGIT_VERSION='"$(GIT_VERSION)"' -I$(CURDIR)/include $(CFLAGS) export CFLAGS |