build: Fix makefile syntax 82/41082/2
authorRenato Botelho do Couto <renato@netgate.com>
Wed, 5 Jun 2024 17:49:09 +0000 (17:49 +0000)
committerDamjan Marion <dmarion@0xa5.net>
Mon, 10 Jun 2024 13:14:04 +0000 (13:14 +0000)
Type: fix

Change-Id: I29f679ffbc14242d9e7e5284b698b86a70fbbef6
Signed-off-by: Renato Botelho do Couto <renato@netgate.com>
build/external/Makefile
build/external/packages/dpdk.mk

index 3cb7b47..6b5f905 100644 (file)
@@ -21,7 +21,7 @@ INSTALL_DIR      ?= $(CURDIR)/_install
 PKG_VERSION ?= $(shell git describe --abbrev=0 --match 'v[0-9]*' | cut -d- -f1 | cut -dv -f2 | cut -d. -f1,2)
 PKG_SUFFIX ?= $(shell git log --oneline v$(PKG_VERSION)-rc0.. . | wc -l)
 SOURCE_DATE_EPOCH ?= $(shell git log -1 --pretty=%ct .)
-ifeq ($shell(uname), FreeBSD)
+ifeq ($(shell uname), FreeBSD)
 JOBS := $(shell nproc)
 else
 JOBS := $(if $(shell [ -f /proc/cpuinfo ] && head /proc/cpuinfo),\
index c03d1a1..8ee65fa 100644 (file)
@@ -138,7 +138,7 @@ DPDK_DRIVERS_DISABLED := $(shell echo $(DPDK_DRIVERS_DISABLED) | tr -d '\\\t ')
 DPDK_LIBS_DISABLED := $(shell echo $(DPDK_LIBS_DISABLED) | tr -d '\\\t ')
 
 SED=sed
-ifeq ($shell(uname), FreeBSD)
+ifeq ($(shell uname), FreeBSD)
 SED=gsed
 endif