diff options
author | Alexander Ryzhov <github@ryzhov-al.ru> | 2019-01-23 10:06:32 +0300 |
---|---|---|
committer | Alexander Ryzhov <github@ryzhov-al.ru> | 2019-01-23 10:06:32 +0300 |
commit | 7454478df3fb1c8775e9f89309a65eebef187512 (patch) | |
tree | da3faa0bfc625a8322f52c07cce0e810c7b65ce3 /net/aggregate/patches | |
parent | 49e441c259d894f6e756739dce9577d45a7eb213 (diff) |
aggregate: respect CFLAGS, LDFLAGS
Signed-off-by: Alexander Ryzhov <github@ryzhov-al.ru>
Diffstat (limited to 'net/aggregate/patches')
-rw-r--r-- | net/aggregate/patches/500-cross_compile_flags.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/net/aggregate/patches/500-cross_compile_flags.patch b/net/aggregate/patches/500-cross_compile_flags.patch new file mode 100644 index 000000000..b7392fbb0 --- /dev/null +++ b/net/aggregate/patches/500-cross_compile_flags.patch @@ -0,0 +1,14 @@ +--- a/Makefile.in ++++ b/Makefile.in +@@ -25,8 +25,9 @@ + INSTALL = @INSTALL@ + DEFS = @DEFS@ + LIBS = @LIBS@ +-CFLAGS = -O +-LDFLAGS = -s ++CFLAGS = @CFLAGS@ ++CPPFLAGS = @CPPFLAGS@ ++LDFLAGS = @LDFLAGS@ + prefix = @prefix@ + + SHELL = /bin/sh |