diff options
author | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2023-09-19 15:37:57 +0000 |
---|---|---|
committer | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2023-09-20 12:10:03 +0000 |
commit | 29fbd5bc638e4bc44223651b1a373f37a8484d3d (patch) | |
tree | fd9a0a1e34efcbad229571a0f09328553d8bff96 | |
parent | 3d864ab9721054806c92c3c0588b8a45f80d8aa2 (diff) |
net/libdnet: Fix missing USES flags
In my previous commit I missed to type ldflags arguments to localbase,
this patch fixes the commit.
-rw-r--r-- | net/libdnet/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/libdnet/Makefile b/net/libdnet/Makefile index 2004f32597ea..374e0557ceb2 100644 --- a/net/libdnet/Makefile +++ b/net/libdnet/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libpfctl.so:net/libpfctl -USES?= autoreconf libtool localbase +USES?= autoreconf libtool localbase:ldflags LDFLAGS+= -lpfctl |