build: fix meson build in CI environments
authorAli Alnubani <alialnu@mellanox.com>
Mon, 1 Apr 2019 15:38:59 +0000 (15:38 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 1 Apr 2019 16:54:17 +0000 (18:54 +0200)
commitb77c1d1c0ab7712827ad9b2bf4da796397546911
treec49eb3f5ce74f0a4a361b44f56b46418d1f46041
parenta2fe4c1b3803f3b4c060c03fd51fdc376c05ec43
build: fix meson build in CI environments

This is to fix a build error with meson in GNU/Linux that is caused
by using the 'more' command to read the VERSION file. The error:

    config/meson.build:10:10: ERROR:  String
    '::::::::::::::\n<RTE_SDK_PATH>VERSION\n::::::::::::::\n19' cannot be
    converted to int

The command 'more' prints the file name before the actual
contents of the file when it's being run without a controlling terminal.
This could happen in CI environments.

Please refer to:
https://git.kernel.org/pub/scm/utils/util-linux/util-linux.git/tree/text-utils/more.c

Fixes: c04172b5f031 ("build: add single source of DPDK version number")
Fixes: d320fe56bd51 ("build: use version number from config file")

Signed-off-by: Ali Alnubani <alialnu@mellanox.com>
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
meson.build