Accepting request 101036 from home:Warhammer40k:x_org_121_test

Please review:
I think there's a small typo in new method of compiling libxcb-* libs, that leads to wrong RPM-provides. For example (according to build logs): "libxcb-auxso.0" instead "libxcb-aux.so.0"
This leads to missing deps when I try to update.
Adding missing dot to gcc "-soname" option seems helps to generate correct libxcb-* RPM-provides.
//Sorry for my English

OBS-URL: https://build.opensuse.org/request/show/101036
OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/xorg-x11-libs?expand=0&rev=180
This commit is contained in:
Stefan Dirsch 2012-01-23 10:57:47 +00:00 committed by Git OBS Bridge
parent 20d08c029c
commit fb2dded444

View File

@ -153,7 +153,7 @@ for ext_version in atom:1 aux:0 event:1 icccm:1 image:0 keysyms:1 property:1 ren
version=${ext_version#*:}
> xcb-${ext}.c
gcc -Wall -ansi -pedantic -c xcb-${ext}.c -fPIC
gcc -shared -Wl,-soname,libxcb-${ext}so.${version} \
gcc -shared -Wl,-soname,libxcb-${ext}.so.${version} \
-o $RPM_BUILD_ROOT%{_libdir}/libxcb-${ext}.so.${version} xcb-${ext}.o
done
%if %suse_version > 1110