summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Thompson <will@willthompson.co.uk>2023-02-20 16:23:36 +0000
committerWill Thompson <will@willthompson.co.uk>2023-02-20 16:23:36 +0000
commit22f454058f203ab18e735348900151f27708cb59 (patch)
treef5720751243d8d657f1b1f4067a24908dceda021
parentf074e5a93a12d0cfff4b2489e653caddc6a66a01 (diff)
parent77e2de892cd359f779c84739682431a66eb8cf31 (diff)
Merge branch 'master' into 'master'HEADmaster
Makefile: fix pcap-config call See merge request bustle/bustle!21
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8865819..721e714 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ CFLAGS = -g -O2 -Wall -Wunused -Waddress
DBUS_FLAGS = $(shell pkg-config --cflags --libs dbus-1)
GIO_FLAGS := $(shell pkg-config --cflags --libs 'glib-2.0 >= 2.26' gio-2.0 gio-unix-2.0)
PCAP_CONFIG ?= pcap-config
-PCAP_FLAGS := $(shell $(PCAP_CONFIG) --cflags pcap-config --libs)
+PCAP_FLAGS := $(shell $(PCAP_CONFIG) --cflags --libs)
DESTDIR =
PREFIX = /usr/local
BINDIR = $(DESTDIR)$(PREFIX)/bin