From mboxrd@z Thu Jan 1 00:00:00 1970 From: luca.boccassi@gmail.com Subject: [PATCH] build: use integer for new max_ethports option too Date: Fri, 1 Mar 2019 15:46:51 +0000 Message-ID: <20190301154651.16742-1-luca.boccassi@gmail.com> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Cc: bruce.richardson@intel.com To: dev@dpdk.org Return-path: Received: from mail-wr1-f65.google.com (mail-wr1-f65.google.com [209.85.221.65]) by dpdk.org (Postfix) with ESMTP id 3C97D2BF4 for ; Fri, 1 Mar 2019 16:46:59 +0100 (CET) Received: by mail-wr1-f65.google.com with SMTP id w2so26352946wrt.11 for ; Fri, 01 Mar 2019 07:46:59 -0800 (PST) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" From: Luca Boccassi max_ethports was merged after the other patch was written: e04ea7fcf03c ("build: use integers for numerical options") So convert this one too like the others have already been. Signed-off-by: Luca Boccassi --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index dc7346fe0..16d9f92c6 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -20,7 +20,7 @@ option('lib_musdk_dir', type: 'string', value: '', description: 'path to the MUSDK library installation directory') option('machine', type: 'string', value: 'native', description: 'set the target machine type') -option('max_ethports', type: 'string', value: '32', +option('max_ethports', type: 'integer', value: 32, description: 'maximum number of Ethernet devices') option('max_lcores', type: 'integer', value: 128, description: 'maximum number of cores/threads supported by EAL') -- 2.20.1