From: James Simmons Date: Wed, 15 Jul 2020 18:33:24 +0000 (-0400) Subject: LU-13787 build: fix snmp / libcfs build order X-Git-Tag: 2.13.56~119 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=refs%2Fchanges%2F88%2F39388%2F3;p=fs%2Flustre-release.git 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 --- 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