diff options
author | W. Michael Petullo <mike@flyn.org> | 2023-07-17 08:42:20 -0500 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2023-07-17 11:44:01 -0700 |
commit | f60a0b2b46078e9832582e5022399c2a9ca4b7a4 (patch) | |
tree | b1d7fe6e37aaf0cfed21de245110f67ca0ec2de2 /utils/jq/Makefile | |
parent | 26f88db4fee282aac7e4b1ec14e8ca9beb6a7590 (diff) |
jq: remove _GNU_SOURCE from Makefile and instead backport patch
Commit 4bb18b04 added _GNU_SOURCE to jq's Makefile to fix a segfault.
This has since been fixed upstream, so this commit backports the upstream
patch instead. This keeps things closer to upstream, and it will prevent
the Makefile from containing a redundant fix once upstream releases the
next version.
Signed-off-by: W. Michael Petullo <mike@flyn.org>
Diffstat (limited to 'utils/jq/Makefile')
-rw-r--r-- | utils/jq/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/jq/Makefile b/utils/jq/Makefile index 66b4306a5..362d7d750 100644 --- a/utils/jq/Makefile +++ b/utils/jq/Makefile @@ -28,7 +28,7 @@ ifdef CONFIG_USE_MIPS16 TARGET_CFLAGS += -fno-ipa-sra endif -TARGET_CFLAGS += -std=c99 -D_GNU_SOURCE +TARGET_CFLAGS += -std=c99 CONFIGURE_ARGS+= \ --disable-docs \ |