X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=examples%2Fvdpa%2FMakefile;h=6a25497cd8d2081477bef912cc8c58b447b1be08;hb=c621a9b66bd24e363645b68f08b6f3ef7ab430cc;hp=734042380797412ab187064574a54af4e31fa783;hpb=f3558ec28f61d02f91f9d0274d3d48bde1818b7d;p=dpdk.git diff --git a/examples/vdpa/Makefile b/examples/vdpa/Makefile index 7340423807..6a25497cd8 100644 --- a/examples/vdpa/Makefile +++ b/examples/vdpa/Makefile @@ -9,8 +9,7 @@ SRCS-y := main.c CFLAGS += -DALLOW_EXPERIMENTAL_API # Build using pkg-config variables if possible -$(shell pkg-config --exists libdpdk) -ifeq ($(.SHELLSTATUS),0) +ifeq ($(shell pkg-config --exists libdpdk && echo 0),0) all: shared .PHONY: shared static @@ -19,9 +18,9 @@ shared: build/$(APP)-shared static: build/$(APP)-static ln -sf $(APP)-static build/$(APP) -PKGCONF=pkg-config --define-prefix +PKGCONF ?= pkg-config -PC_FILE := $(shell $(PKGCONF) --path libdpdk) +PC_FILE := $(shell $(PKGCONF) --path libdpdk 2>/dev/null) CFLAGS += -O3 $(shell $(PKGCONF) --cflags libdpdk) LDFLAGS_SHARED = $(shell $(PKGCONF) --libs libdpdk) LDFLAGS_STATIC = -Wl,-Bstatic $(shell $(PKGCONF) --static --libs libdpdk)