mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 07:51:59 -09:00
package/pciutils: requires C99
Since version 3.8.0 pciutils requires C99 toolchain as documented in its README file. Use the gnu99 variant because the code requires the GNU extended getopt(3) and the 'asm' keyword. Fixes: http://autobuild.buildroot.net/results/1c9988105b64594185a4002ca046aec8b87ea141/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
committed by
Arnout Vandecappelle (Essensium/Mind)
parent
4a1e3ff071
commit
437d0433d3
@@ -13,7 +13,7 @@ PCIUTILS_LICENSE_FILES = COPYING
|
||||
PCIUTILS_MAKE_OPTS = \
|
||||
CROSS_COMPILE="$(TARGET_CROSS)" \
|
||||
HOST="$(NORMALIZED_ARCH)-linux" \
|
||||
OPT="$(TARGET_CFLAGS)" \
|
||||
OPT="$(TARGET_CFLAGS) -std=gnu99" \
|
||||
LDFLAGS="$(TARGET_LDFLAGS)" \
|
||||
DNS=no \
|
||||
STRIP=
|
||||
|
||||
Reference in New Issue
Block a user