diff options
author | Dirk Neukirchen <dirkneukirchen@web.de> | 2015-08-13 19:12:07 +0200 |
---|---|---|
committer | Dirk Neukirchen <dirkneukirchen@web.de> | 2015-08-19 11:12:24 +0200 |
commit | f8e6574e64c8c77fe60a9319630b70954e6ab79e (patch) | |
tree | 0b39c59076ef09495c8ced62ed972891c0e932cc /utils/flashrom/Makefile | |
parent | ad39db848e72054e1ecfae787ef5f24b8d25a12a (diff) |
flashrom: fix gcc5 build
default C dialect changed with gcc5
explicitly use old C dialect
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
Diffstat (limited to 'utils/flashrom/Makefile')
-rw-r--r-- | utils/flashrom/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/flashrom/Makefile b/utils/flashrom/Makefile index af7b5e1dd..6d3c573a4 100644 --- a/utils/flashrom/Makefile +++ b/utils/flashrom/Makefile @@ -46,6 +46,8 @@ define Package/flashrom/description /firmware images. endef +TARGET_CFLAGS+=-std=gnu89 + MAKE_FLAGS += \ PREFIX="/usr" |