From: Simon Wilkinson Date: Sun, 30 Jan 2011 18:35:28 +0000 (+0000) Subject: bozo: Fix linker problem on Linux X-Git-Tag: upstream/1.8.0_pre1^2~4222 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=60eff137a99ed7d9d5e70966c6f86425ae93b82b;p=packages%2Fo%2Fopenafs.git 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 --- diff --git a/src/bozo/Makefile.in b/src/bozo/Makefile.in index b550a72b0..2a918643d 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 \