Skip to content

Commit

Permalink
buildfix: do not threat warning as errors for router
Browse files Browse the repository at this point in the history
  • Loading branch information
zaloisio committed Nov 21, 2019
1 parent 8524b19 commit 73828cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion release/src/router/udpxy/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ GZIP := /bin/gzip
MKDEPOPT := -MM
DEBUG_ON := -g

ALL_CFLAGS = -W -Wall -Werror --pedantic $(CFLAGS)
ALL_CFLAGS = -W --pedantic $(CFLAGS)

SYSTEM=$(shell uname 2>/dev/null)
ifneq (,$(filter $(SYSTEM),FreeBSD Darwin))
Expand Down
2 changes: 1 addition & 1 deletion release/src/router/udpxy/gcc.mk
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
EXEC = udpxy
UPXC = upxc
CC = gcc
CFLAGS = -W -Wall -Werror --pedantic
CFLAGS = -W -Wall --pedantic

BUILDFILE = BUILD
BUILDNO = `cat $(BUILDFILE)`
Expand Down
2 changes: 1 addition & 1 deletion release/src/router/usbmode/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 2.6)

PROJECT(usbmode C)

ADD_DEFINITIONS(-Os -ggdb -Wall -Werror --std=gnu99 -Wmissing-declarations)
ADD_DEFINITIONS(-Os -ggdb -Wall --std=gnu99 -Wmissing-declarations)

#SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "")

Expand Down

0 comments on commit 73828cf

Please sign in to comment.