[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] Re: libconfig installs in /lib, should be /lib64
On Fri, 22 Jan 2010, Andre Przywara wrote: > Hi, > > the libconfig shipped with libxl is put in the /usr/lib directory (at > least on my setup). Since the library is ELF64, it should go into > /usr/lib64 - as all the other Xen libraries do. > I have no idea of the autotools / Makefile magic to do this (and don't > feel like learning about it this afternoon), so I hope someone else can > fix this. The default Xen libraries include $(XEN_ROOT)/tools/Rules.mk, > which eventually pulls in LIB_DIR from x86_{32,64}.mk, which contains > the correct directory. But I don't see an easy way to inject this into > the autotools setup of libconfig. > The same issue is with the pkgconfig directory, which also should reside > below lib64 as well as the path written in the .pc file itself. > Thanks for point out this issue, this patch should fix it. Signed-off-by: Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx> --- diff -r 4978b4a4bbb6 tools/libxl/Makefile --- a/tools/libxl/Makefile Fri Jan 22 13:32:26 2010 +0000 +++ b/tools/libxl/Makefile Fri Jan 22 15:21:29 2010 +0000 @@ -44,7 +44,7 @@ $(LIBCONFIG_OUTPUT)/libconfig.so: $(LIBCONFIG_SOURCE).tar.gz [ ! -d "$(LIBCONFIG_SOURCE)" ] && tar xzf $< - cd $(LIBCONFIG_SOURCE) && ./configure --prefix=$(DESTDIR)$(PREFIX) --disable-cxx && $(MAKE) + cd $(LIBCONFIG_SOURCE) && ./configure --prefix=$(DESTDIR)$(PREFIX) --libdir=$(DESTDIR)$(LIBDIR) --disable-cxx && $(MAKE) xl.o: $(LIBCONFIG_OUTPUT)/libconfig.so xl.c $(CC) $(CFLAGS) -I$(LIBCONFIG_SOURCE) -c xl.c _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |