Browse Source

vnstat: respect LDFLAGS

Alexander Ryzhov 9 years ago
parent
commit
5d964c5faa
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      net/vnstat/Makefile

+ 2
- 1
net/vnstat/Makefile View File

@@ -63,7 +63,8 @@ endef
63 63
 define Build/Compile/vnstat
64 64
 	+$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
65 65
 		$(TARGET_CONFIGURE_OPTS) \
66
-		CFLAGS="$(TARGET_CFLAGS)"
66
+		CFLAGS="$(TARGET_CFLAGS)" \
67
+		LDFLAGS="$(TARGET_LDFLAGS)"
67 68
 endef
68 69
 
69 70
 define Build/Compile/vnstati