diff options
| author | Jiri Slachta | 2017-05-06 18:27:54 +0000 |
|---|---|---|
| committer | GitHub | 2017-05-06 18:27:54 +0000 |
| commit | bb6b12176a25ec08a11f023a09085106235fa198 (patch) | |
| tree | cc77712e47524f15b6778151c8f180072ba2ff6a | |
| parent | fa0171629bc6bcc28e0fb728c4b0af374e0065fe (diff) | |
| parent | 7f8a7435d5d6ad77a93004cb62942038c7491a73 (diff) | |
| download | telephony-bb6b12176a25ec08a11f023a09085106235fa198.tar.gz | |
Merge pull request #141 from ffainelli/fixes
pcapsipdump: Pass down TARGET_CPPFLAGS and TARGET_LDFLAGS
| -rw-r--r-- | net/pcapsipdump/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/pcapsipdump/Makefile b/net/pcapsipdump/Makefile index ca26bda..77dd64b 100644 --- a/net/pcapsipdump/Makefile +++ b/net/pcapsipdump/Makefile @@ -41,7 +41,8 @@ TARGET_CC=$(TARGET_CXX) define Build/Compile $(TARGET_CONFIGURE_OPTS) \ $(MAKE) -C $(PKG_BUILD_DIR) \ - CPPFLAGS="$(TARGET_CXXFLAGS) -fno-rtti" \ + CPPFLAGS="$(TARGET_CXXFLAGS) $(TARGET_CPPFLAGS) -fno-rtti" \ + LDFLAGS="$(TARGET_LDFLAGS)" \ LIBS="-lpcap" endef |