From 60eff137a99ed7d9d5e70966c6f86425ae93b82b Mon Sep 17 00:00:00 2001 From: Simon Wilkinson Date: Sun, 30 Jan 2011 18:35:28 +0000 Subject: [PATCH] bozo: Fix linker problem on Linux Some unconnected changes break the Linux linker when faced with this library list. librx is included too early, and liblwp isn't included after the second inclusion of librx. Reorder the library list to fix this problem, and so it matches the library order in the rest of our modules. Change-Id: Iba19111f613c70c8a6e66539b437a99d58faf7f4 Reviewed-on: http://gerrit.openafs.org/3775 Tested-by: BuildBot Reviewed-by: Derrick Brashear --- src/bozo/Makefile.in | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bozo/Makefile.in b/src/bozo/Makefile.in index b550a72b08..2a918643d8 100644 --- a/src/bozo/Makefile.in +++ b/src/bozo/Makefile.in @@ -36,6 +36,7 @@ LIBS= ${TOP_LIBDIR}/librx.a \ ${TOP_LIBDIR}/librxkad.a \ ${TOP_LIBDIR}/libubik.a \ ${TOP_LIBDIR}/librx.a \ + ${TOP_LIBDIR}/liblwp.a \ ${TOP_LIBDIR}/libcom_err.a \ ${TOP_LIBDIR}/util.a \ ${TOP_LIBDIR}/libsys.a \