Browse Source

Merge pull request #14636 from neheb/n

netifyd: add reproducibility patch
lilik-openwrt-22.03
Rosen Penev 3 years ago
committed by GitHub
parent
commit
7e6daedf4c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions
  1. +1
    -1
      net/netifyd/Makefile
  2. +11
    -0
      net/netifyd/patches/010-reproducible.patch

+ 1
- 1
net/netifyd/Makefile View File

@ -6,7 +6,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=netifyd
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_MAINTAINER:=Darryl Sokoloski <darryl@egloo.ca>
PKG_LICENSE:=GPL-3.0-or-later


+ 11
- 0
net/netifyd/patches/010-reproducible.patch View File

@ -0,0 +1,11 @@
--- a/src/netifyd.cpp
+++ b/src/netifyd.cpp
@@ -144,7 +144,7 @@ static void nd_usage(int rc = 0, bool ve
{
fprintf(stderr, "%s\n", nd_get_version_and_features().c_str());
fprintf(stderr, "Copyright (C) 2015-2020 eGloo Incorporated\n"
- "[%s %s]\n", GIT_RELEASE, GIT_DATE);
+ "[%s]\n", PACKAGE_VERSION);
if (version) {
fprintf(stderr, "\nThis application uses nDPI v%s\n"
"http://www.ntop.org/products/deep-packet-inspection/ndpi/\n", ndpi_revision());

Loading…
Cancel
Save