diff options
author | Will Thompson <will@willthompson.co.uk> | 2023-02-20 16:23:36 +0000 |
---|---|---|
committer | Will Thompson <will@willthompson.co.uk> | 2023-02-20 16:23:36 +0000 |
commit | 22f454058f203ab18e735348900151f27708cb59 (patch) | |
tree | f5720751243d8d657f1b1f4067a24908dceda021 /Makefile | |
parent | f074e5a93a12d0cfff4b2489e653caddc6a66a01 (diff) | |
parent | 77e2de892cd359f779c84739682431a66eb8cf31 (diff) |
Makefile: fix pcap-config call
See merge request bustle/bustle!21
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |