From fb01543905d3d1bd579338b3f280d02b22f6aec3 Mon Sep 17 00:00:00 2001 From: James Simmons Date: Wed, 15 Jul 2020 14:33:24 -0400 Subject: [PATCH] LU-13787 build: fix snmp / libcfs build order The Lustre snmp code is dependent on libcfs so make sure libcfs is built first. This only shows up in parallel builds. Fixes: 742897a967cf ("LU-13274 uapi: make lnet UAPI headers C99 compliant") Test-Parameters: trivial Change-Id: Ibe1669e8586eb54129d3b9dd74b0287766af0bf3 Signed-off-by: James Simmons Reviewed-on: https://review.whamcloud.com/39388 Reviewed-by: Gian-Carlo DeFazio Tested-by: jenkins Reviewed-by: Olaf Faaland-LLNL Tested-by: Maloo Reviewed-by: Oleg Drokin --- autoMakefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoMakefile.am b/autoMakefile.am index b7bcff3..0f1424b 100644 --- a/autoMakefile.am +++ b/autoMakefile.am @@ -1,15 +1,15 @@ SUBDIRS := @LDISKFS_SUBDIR@ \ . \ @LUSTREIOKIT_SUBDIR@ \ - @SNMP_SUBDIR@ \ libcfs \ + @SNMP_SUBDIR@ \ lnet \ lustre DIST_SUBDIRS := ldiskfs \ lustre-iokit \ - @SNMP_DIST_SUBDIR@ \ libcfs \ + @SNMP_DIST_SUBDIR@ \ lnet \ lustre \ config -- 1.8.3.1