Merge pull request #1511 from tonytheodore/ragel-gcc6

ragel: fix build with gcc6
This commit is contained in:
Tony Theodore 2016-08-27 08:15:08 +10:00 committed by GitHub
commit ac82d048b2
1 changed files with 2 additions and 1 deletions

View File

@ -19,7 +19,8 @@ endef
define $(PKG)_BUILD_$(BUILD)
cd '$(BUILD_DIR)' && '$(SOURCE_DIR)/configure' \
--prefix='$(PREFIX)/$(BUILD)'
--prefix='$(PREFIX)/$(BUILD)' \
CXXFLAGS=-std=c++03
$(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)'
$(MAKE) -C '$(BUILD_DIR)' -j 1 install
endef