devtools: fix build test on FreeBSD
authorBruce Richardson <bruce.richardson@intel.com>
Mon, 25 Feb 2019 15:40:01 +0000 (15:40 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 26 Feb 2019 16:43:36 +0000 (17:43 +0100)
readlink option "-m" is not supported on FreeBSD (checked on BSD 11),
so change to the largely-equivalent "-f" flag.

Fixes: a55277a788df ("devtools: add test script for meson builds")
Cc: stable@dpdk.org
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
devtools/test-meson-builds.sh

index 3edc805..e59474d 100755 (executable)
@@ -7,7 +7,7 @@
 # * if a build-directory already exists we assume it was properly configured
 # Run ninja after configuration is done.
 
-srcdir=$(dirname $(readlink -m $0))/..
+srcdir=$(dirname $(readlink -f $0))/..
 MESON=${MESON:-meson}
 use_shared="--default-library=shared"