OpenAFS Master Repository branch, master, updated. openafs-devel-1_9_1-435-g20e996a
Gerrit Code Review
gerrit@openafs.org
Mon, 8 Jul 2024 14:52:27 -0400
The following commit has been merged in the master branch:
commit af788963a9fea3255d54539a0cff9e94f66fbc1a
Author: Michael Meffie <mmeffie@sinenomine.net>
Date: Mon Jul 8 09:27:15 2024 -0400
butm: Remove duplicate library arguments
The test_ftm and butm_test programs link against the libbutm.a library.
Currently those targets depend on libbutm.a but the link command also
includes the ${TOP_LIBDIR}/libbutm.a which is made by the install
target.
This can lead to errors during a parallel build:
gcc ... -o test_ftm test_ftm.o libbutm.a ... <top_dir>/lib/libbutm.a ...
gcc: error: <top_dir>/lib/libbutm.a: No such file or directory
Remove the ${TOP_LIBDIR}/libbutm.a from the LIBS macro, so the test_ftm
and butm_test programs are built from the libbutm.a in the local
directory, which those programs depend on.
Change-Id: I695b0bbff4053804c514b361dca4da49e623a2a3
Reviewed-on: https://gerrit.openafs.org/15781
Reviewed-by: Cheyenne Wills <cwills@sinenomine.net>
Reviewed-by: Michael Meffie <mmeffie@sinenomine.net>
Tested-by: Michael Meffie <mmeffie@sinenomine.net>
src/butm/Makefile.in | 1 -
1 file changed, 1 deletion(-)
--
OpenAFS Master Repository