diff options
author | Christian Marangi <ansuelsmth@gmail.com> | 2024-04-06 16:56:14 +0200 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2024-04-06 16:56:14 +0200 |
commit | 9d809674e3c243327015c781ea5fe3e165c399f1 (patch) | |
tree | ab475eb239fde8c97adc34dd02ba3f269d7c6421 /net | |
parent | 9278e7d624e8a12f9874efc1f32af5e49ef352f9 (diff) |
nginx: drop redundant --with-cc-opt configure arg
Drop redundant --with-cc-opt configure arg to mute warning of
cc1: note: someone does not honour COPTS correctly, passed 2 times.
CFLAGS are already parsed and correctly applied without this option and
adding it just makes the CFLAGS appended twice.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/nginx/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/nginx/Makefile b/net/nginx/Makefile index 6612c5935..14c856a31 100644 --- a/net/nginx/Makefile +++ b/net/nginx/Makefile @@ -406,7 +406,6 @@ CONFIGURE_ARGS += \ --http-proxy-temp-path=/var/lib/nginx/proxy \ --http-fastcgi-temp-path=/var/lib/nginx/fastcgi \ --with-cc="$(TARGET_CC)" \ - --with-cc-opt="$(TARGET_CPPFLAGS) $(TARGET_CFLAGS)" \ --with-ld-opt="$(TARGET_LDFLAGS)" \ --without-http_upstream_zone_module \ --with-compat \ |