From sparky at pld-linux.org Sat Jan 2 16:59:39 2010 From: sparky at pld-linux.org (Przemyslaw Iskra) Date: Sat, 2 Jan 2010 16:59:39 +0100 Subject: SVN: geninitrd/trunk/Makefile In-Reply-To: <11083@svn.pld-linux.org> References: <11083@svn.pld-linux.org> Message-ID: <20100102155939.GA14342@pld-linux.org> On Sat, Jan 02, 2010 at 04:03:14PM +0100, glen wrote: > Author: glen > Date: Sat Jan 2 16:03:13 2010 > New Revision: 11083 > > Modified: > geninitrd/trunk/Makefile > Log: > - avoid creating empty manual > geninitrd.8: geninitrd.8.xml > - refentry2man < geninitrd.8.xml > geninitrd.8 > + refentry2man < $< > $@.tmp && mv $@.tmp $@ Consider using .DELETE_ON_ERROR: It normally is a good thing not to have half-finished files if anything bad happens. -- ____ Sparky{PI] -- Przemyslaw _ ___ _ _ ........... LANG...Pl..Ca..Es..En /____) ___ ___ _ _ || Iskra | | _ \| | | : WWW........ppcrcd.pld-linux.org \____\| -_)'___| ||^'||//\\// < | _/| | | : JID......sparkyjabberes.org (____/|| (_-_|_|| ||\\ || |_ |_| |_| _| : Mail....sparkypld-linux.org From udvzsolt at gmail.com Mon Jan 4 08:11:23 2010 From: udvzsolt at gmail.com (Zsolt Udvari) Date: Mon, 4 Jan 2010 08:11:23 +0100 Subject: SDL downgrade? Message-ID: <760ece281001032311n775eba7fl770a4c98d4801b5d@mail.gmail.com> Hi all! Please see the next forum: http://www.wesnoth.org/forum/viewtopic.php?f=4&t=27800 I've same problem with wesnoth and after SDL's downgrade, everything works fine. So should downgrade the SDL in PLD's repos? Zsolt From z at xatka.net Mon Jan 4 08:22:00 2010 From: z at xatka.net (=?iso-8859-2?Q?Pawe=B3?= Zuzelski) Date: Mon, 4 Jan 2010 08:22:00 +0100 Subject: SDL downgrade? In-Reply-To: <760ece281001032311n775eba7fl770a4c98d4801b5d@mail.gmail.com> References: <760ece281001032311n775eba7fl770a4c98d4801b5d@mail.gmail.com> Message-ID: <20100104072200.GA4124@davabel.touk.pl> On Mon, 04 Jan 2010, Zsolt Udvari wrote: > Hi all! > > Please see the next forum: > http://www.wesnoth.org/forum/viewtopic.php?f=4&t=27800 > > I've same problem with wesnoth and after SDL's downgrade, everything > works fine. So should downgrade the SDL in PLD's repos? There is a bug report in SDL bugzilla: http://bugzilla.libsdl.org/show_bug.cgi?id=894 -- Pawe? From glen at pld-linux.org Mon Jan 4 12:25:32 2010 From: glen at pld-linux.org (Elan =?iso-8859-1?q?Ruusam=E4e?=) Date: Mon, 4 Jan 2010 13:25:32 +0200 Subject: packages: icedove/icedove.spec - added few more options to configure In-Reply-To: References: Message-ID: <201001041325.33031.glen@pld-linux.org> On Monday 04 January 2010 10:51:45 paszczus wrote: > Author: paszczus Date: Mon Jan 4 08:51:45 2010 GMT > Module: packages Tag: HEAD > ---- Log message: > - added few more options to configure > > ---- Files affected: > packages/icedove: > icedove.spec (1.45 -> 1.46) > > ---- Diffs: > > ================================================================ > Index: packages/icedove/icedove.spec > diff -u packages/icedove/icedove.spec:1.45 > packages/icedove/icedove.spec:1.46 --- > packages/icedove/icedove.spec:1.45 Tue Dec 22 09:29:33 2009 > +++ packages/icedove/icedove.spec Mon Jan 4 09:51:40 2010 > @@ -150,9 +150,9 @@ > cp -f %{_datadir}/automake/config.* directory/c-sdk/config/autoconf > > cat << 'EOF' > .mozconfig > - > mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-%{_target_cpu} > > +# Options for 'configure' (same as command-line options). > ac_add_options --prefix=%{_prefix} > ac_add_options --exec-prefix=%{_exec_prefix} > ac_add_options --bindir=%{_bindir} > @@ -167,11 +167,16 @@ > ac_add_options --mandir=%{_mandir} > ac_add_options --infodir=%{_infodir} > %if %{?debug:1}0 > +ac_add_options --disable-optimize > ac_add_options --enable-debug > ac_add_options --enable-debug-modules > +ac_add_options --enable-debugger-info-modules > +ac_add_options --enable-crash-on-assert > %else > ac_add_options --disable-debug > ac_add_options --disable-debug-modules > +ac_add_options --disable-logging > +ac_add_options --enable-optimize="%{rpmcflags} -Os" > %endif > %if %{with tests} > ac_add_options --enable-tests > @@ -193,6 +198,15 @@ > %else > ac_add_options --disable-ldap > %endif > +ac_add_options --disable-elf-dynstr-gc > +ac_add_options --disable-crashreporter > +ac_add_options --disable-pedantic > +ac_add_options --disable-updater > +ac_add_options --disable-xterm-updates > +ac_add_options --enable-ldap > +ac_add_options --enable-postscript > +ac_add_options --enable-old-abi-compat-wrappers > +ac_add_options --enable-startup-notification > ac_add_options --enable-calendar > ac_add_options --disable-installer > ac_add_options --disable-jsd > @@ -230,13 +244,17 @@ > EOF > > %{__make} -j1 -f client.mk build \ > - CC="%{__cc}" \ > + STRIP="/bin/true" \ > + CC="%{__cc}" \ > CXX="%{__cxx}" > > %if %{with enigmail} > - cd mailnews/extensions/enigmail > - ./makemake -r > - %{__make} -C ../../../obj-%{_target_cpu}/mailnews/extensions/enigmail > +cd mailnews/extensions/enigmail > +./makemake -r > +%{__make} -C ../../../obj-%{_target_cpu}/mailnews/extensions/enigmail \ > + STRIP="/bin/true" \ > + CC="%{__cc}" \ > + CXX="%{__cxx}" > %endif > > %install > @@ -255,13 +273,13 @@ > mv $RPM_BUILD_ROOT%{_libdir}/%{name}/chrome > $RPM_BUILD_ROOT%{_datadir}/%{name}/chrome mv > $RPM_BUILD_ROOT%{_libdir}/%{name}/defaults > $RPM_BUILD_ROOT%{_datadir}/%{name}/defaults mv > $RPM_BUILD_ROOT%{_libdir}/%{name}/greprefs > $RPM_BUILD_ROOT%{_datadir}/%{name}/greprefs -mv > $RPM_BUILD_ROOT%{_libdir}/%{name}/icons > $RPM_BUILD_ROOT%{_datadir}/%{name}/icons +#mv > $RPM_BUILD_ROOT%{_libdir}/%{name}/icons > $RPM_BUILD_ROOT%{_datadir}/%{name}/icons mv > $RPM_BUILD_ROOT%{_libdir}/%{name}/isp > $RPM_BUILD_ROOT%{_datadir}/%{name}/isp mv > $RPM_BUILD_ROOT%{_libdir}/%{name}/res > $RPM_BUILD_ROOT%{_datadir}/%{name}/res ln -s ../../share/%{name}/chrome > $RPM_BUILD_ROOT%{_libdir}/%{name}/chrome ln -s ../../share/%{name}/defaults > $RPM_BUILD_ROOT%{_libdir}/%{name}/defaults ln -s > ../../share/%{name}/greprefs $RPM_BUILD_ROOT%{_libdir}/%{name}/greprefs -ln > -s ../../share/%{name}/icons $RPM_BUILD_ROOT%{_libdir}/%{name}/icons +#ln > -s ../../share/%{name}/icons $RPM_BUILD_ROOT%{_libdir}/%{name}/icons ln -s > ../../share/%{name}/isp $RPM_BUILD_ROOT%{_libdir}/%{name}/isp ln -s > ../../share/%{name}/res $RPM_BUILD_ROOT%{_libdir}/%{name}/res > > @@ -341,13 +359,13 @@ > %{_libdir}/%{name}/defaults > %{_libdir}/%{name}/dictionaries > %{_libdir}/%{name}/greprefs > -%{_libdir}/%{name}/icons > +#%{_libdir}/%{name}/icons > %{_libdir}/%{name}/isp > %{_libdir}/%{name}/res > > %{_libdir}/%{name}/dependentlibs.list > -%{_libdir}/%{name}/updater > -%{_libdir}/%{name}/update.locale > +#%{_libdir}/%{name}/updater > +#%{_libdir}/%{name}/update.locale > #%{_pixmapsdir}/*.png > %{_desktopdir}/*.desktop > > @@ -355,7 +373,7 @@ > %{_datadir}/%{name}/chrome > %{_datadir}/%{name}/defaults > %{_datadir}/%{name}/greprefs > -%{_datadir}/%{name}/icons > +#%{_datadir}/%{name}/icons > %{_datadir}/%{name}/isp > %{_datadir}/%{name}/res > > @@ -381,6 +399,9 @@ > All persons listed below can be reached at @pld-linux.org > > $Log$ > +Revision 1.46 2010/01/04 08:51:40 paszczus > +- added few more options to configure > + > Revision 1.45 2009/12/22 08:29:33 paszczus > - cleanup > > ================================================================ > > ---- CVS-web: > > http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/icedove/icedove.spec?r >1=1.45&r2=1.46&f=u > > _______________________________________________ > pld-cvs-commit mailing list > pld-cvs-commit at lists.pld-linux.org > http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit -- glen From glen at pld-linux.org Mon Jan 4 12:27:47 2010 From: glen at pld-linux.org (Elan =?iso-8859-1?q?Ruusam=E4e?=) Date: Mon, 4 Jan 2010 13:27:47 +0200 Subject: packages: icedove/icedove.spec - added few more options to configure In-Reply-To: References: Message-ID: <201001041327.47986.glen@pld-linux.org> On Monday 04 January 2010 10:51:45 paszczus wrote: > Author: paszczus Date: Mon Jan 4 08:51:45 2010 GMT > Module: packages Tag: HEAD > ---- Log message: > - added few more options to configure ... > +ac_add_options --disable-elf-dynstr-gc please see this commit, and think again when explicitly enabling this http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/mozilla-lightning/mozilla-lightning.spec?r1=1.10#rev1.10 > +ac_add_options --disable-pedantic ... > +ac_add_options --enable-old-abi-compat-wrappers same here, do u even know what that these do? -- glen From qboosh at pld-linux.org Mon Jan 4 15:42:51 2010 From: qboosh at pld-linux.org (Jakub Bogusz) Date: Mon, 4 Jan 2010 15:42:51 +0100 Subject: packages: glibc/glibc.spec - run localedb-gen only if $SUPPORTED_LOCALES se... In-Reply-To: References: Message-ID: <20100104144250.GA2928@stranger.qboosh.pl> On Mon, Dec 21, 2009 at 04:23:18PM +0100, Pawel Golaszewski wrote: > On Mon, 21 Dec 2009, glen wrote: > > Author: glen Date: Mon Dec 21 14:51:29 2009 GMT > > Module: packages Tag: HEAD > > ---- Log message: > > - run localedb-gen only if $SUPPORTED_LOCALES set (merge from AC-branch) > > > > ---- Files affected: > > packages/glibc: > > glibc.spec (1.854 -> 1.855) > [...] > > %post -n localedb-src > > -/usr/bin/localedb-gen || : > > +SUPPORTED_LOCALES= > > +[ -f /etc/sysconfig/i18n ] && . /etc/sysconfig/i18n > > +[ -f /etc/sysconfig/localedb ] && . /etc/sysconfig/localedb > > +if [ "$SUPPORTED_LOCALES" ]; then > > + localedb-gen || : Should be >/dev/null 2>&1 IMO > > +fi > > What is that for? > localedb-gen will gently display: > SUPPORTED_LOCALES not set > You can set it in /etc/sysconfig/i18n file > > ...as it should. If you have localedb-src you should set some locales. > Otherwise that package has no sense (does it?) Yes, it does. For any use locale data are suitable. And so it isn't mutually exclusive with glibc-localedb-all - there can be full locale-database for system-wide use and locale sources for some specific purposes. -- Jakub Bogusz http://qboosh.pl/ From blues at pld-linux.org Tue Jan 5 00:12:21 2010 From: blues at pld-linux.org (Pawel Golaszewski) Date: Tue, 5 Jan 2010 00:12:21 +0100 (CET) Subject: packages: mysql/mysql.spec, mysql/my.cnf (NEW) - add default ~/.my.cnf via ... In-Reply-To: <200912211723.05736.arekm@maven.pl> References: <200912211723.05736.arekm@maven.pl> Message-ID: On Mon, 21 Dec 2009, Arkadiusz Miskiewicz wrote: > > > +[client] > > > +user=mysql > > Please, don't put you private configs into distro. It's not a good > > default. > Hm but it's real default in our instalation (instead of vanilla mysql > root user). Well, it seems you are right, but it doesn't affect root account (it doesn't use /etc/skel...) -- pozdr. Pawe? Go?aszewski jid:bluesjabbergdapl -------------------------------------------------------------------------- If you think of MS-DOS as mono, and Windows as stereo, then Linux is Dolby Pro-Logic Surround Sound with Bass Boost and all the music is free. From glen at pld-linux.org Tue Jan 5 15:33:46 2010 From: glen at pld-linux.org (Elan =?iso-8859-15?q?Ruusam=E4e?=) Date: Tue, 5 Jan 2010 16:33:46 +0200 Subject: packages: mysql/mysql.spec, mysql/my.cnf (NEW) - add default ~/.my.cnf via ... In-Reply-To: References: <200912211723.05736.arekm@maven.pl> Message-ID: <201001051633.46358.glen@pld-linux.org> On Tuesday 05 January 2010 01:12:21 Pawel Golaszewski wrote: > On Mon, 21 Dec 2009, Arkadiusz Miskiewicz wrote: > > > > +[client] > > > > +user=mysql > > > > > > Please, don't put you private configs into distro. It's not a good > > > default. > > > > Hm but it's real default in our instalation (instead of vanilla mysql > > root user). > > Well, it seems you are right, but it doesn't affect root account (it > doesn't use /etc/skel...) note: if you use "sudo ${SHELL:-/bin/sh} -l" to root yourself, then your user $HOME is used. -- glen From glen at pld-linux.org Wed Jan 6 10:07:01 2010 From: glen at pld-linux.org (Elan =?iso-8859-1?q?Ruusam=E4e?=) Date: Wed, 6 Jan 2010 11:07:01 +0200 Subject: packages: cdrtools/cdrtools-path.patch (NEW) - initial - made from nasty se... In-Reply-To: References: Message-ID: <201001061107.01787.glen@pld-linux.org> On Wednesday 06 January 2010 10:57:52 amateja wrote: > Author: amateja Date: Wed Jan 6 08:57:52 2010 GMT > Module: packages Tag: HEAD > ---- Log message: > - initial > - made from nasty seds from spec > > ---- Files affected: > packages/cdrtools: > cdrtools-path.patch (NONE -> 1.1) (NEW) ... > cdrtools-2.01.01/libsiconv/sic_nls.c +--- > cdrtools-2.01.01.orig/libsiconv/sic_nls.c 2009-11-08 20:58:13.000000000 > +0100 ++++ cdrtools-2.01.01/libsiconv/sic_nls.c 2010-01-06 > 09:11:57.000000000 +0100 +@@ -176,7 +176,7 @@ > + struct dirent *dp; > + int i = 0; > + > +- snprintf(path, sizeof (path), "%s/lib/siconv/", INS_BASE); > ++ snprintf(path, sizeof (path), "%s/%{_lib}/siconv/", INS_BASE); ummm, come to your senses please, rpm %macros are not expanded in .c source files. -- glen From amateja at pimpek.one.pl Wed Jan 6 10:45:49 2010 From: amateja at pimpek.one.pl (Andrzej Mateja) Date: Wed, 6 Jan 2010 10:45:49 +0100 (CET) Subject: packages: cdrtools/cdrtools-path.patch (NEW) - initial - made from nasty se... In-Reply-To: <201001061107.01787.glen@pld-linux.org> References: <201001061107.01787.glen@pld-linux.org> Message-ID: On Wed, 6 Jan 2010, Elan Ruusam?e wrote: > On Wednesday 06 January 2010 10:57:52 amateja wrote: >> Author: amateja Date: Wed Jan 6 08:57:52 2010 GMT >> Module: packages Tag: HEAD >> ---- Log message: >> - initial >> - made from nasty seds from spec >> >> ---- Files affected: >> packages/cdrtools: >> cdrtools-path.patch (NONE -> 1.1) (NEW) > ... >> cdrtools-2.01.01/libsiconv/sic_nls.c +--- >> cdrtools-2.01.01.orig/libsiconv/sic_nls.c 2009-11-08 20:58:13.000000000 >> +0100 ++++ cdrtools-2.01.01/libsiconv/sic_nls.c 2010-01-06 >> 09:11:57.000000000 +0100 +@@ -176,7 +176,7 @@ >> + struct dirent *dp; >> + int i = 0; >> + >> +- snprintf(path, sizeof (path), "%s/lib/siconv/", INS_BASE); >> ++ snprintf(path, sizeof (path), "%s/%{_lib}/siconv/", INS_BASE); > > ummm, > > come to your senses please, rpm %macros are not expanded in .c source files. > It's true. And gues have explained it to me already. Thanks for hint. I'm pld-devel-en mailing list subcriber so you don't have to send it everywhere :). Prawda. Ch?opaki ju? mi to wyja?nili. Dzi?ki za rad?. Subskrybuj? list? pld-devel-en wi?c nie musisz wysy?a? maili wsz?dzie :). Best regards/Pozdrowienia Andrzej Mateja amateja at pimpek.one.pl From sparky at pld-linux.org Thu Jan 7 19:39:14 2010 From: sparky at pld-linux.org (Przemyslaw Iskra) Date: Thu, 7 Jan 2010 19:39:14 +0100 Subject: packages: tea4cups/tea4cups.spec - spelling (you can't say datas, but have ... In-Reply-To: References: Message-ID: <20100107183914.GA5135@pld-linux.org> On Thu, Jan 07, 2010 at 05:19:43PM +0100, glen wrote: > Author: glen Date: Thu Jan 7 16:19:43 2010 GMT > Module: packages Tag: HEAD > ---- Log message: > - spelling (you can't say datas, but have to refer in singular to data) Not quite, "data" _is_ the plural form, singular is "datum". -- ____ Sparky{PI] -- Przemyslaw _ ___ _ _ ........... LANG...Pl..Ca..Es..En /____) ___ ___ _ _ || Iskra | | _ \| | | : WWW........ppcrcd.pld-linux.org \____\| -_)'___| ||^'||//\\// < | _/| | | : JID......sparkyjabberes.org (____/|| (_-_|_|| ||\\ || |_ |_| |_| _| : Mail....sparkypld-linux.org From qboosh at pld-linux.org Sun Jan 10 21:07:53 2010 From: qboosh at pld-linux.org (Jakub Bogusz) Date: Sun, 10 Jan 2010 21:07:53 +0100 Subject: SPECS: Mesa.spec - switch to configure + make style; static dropped; some n... In-Reply-To: References: Message-ID: <20100110200753.GA6329@stranger.qboosh.pl> On Fri, Apr 03, 2009 at 11:31:09PM +0200, arekm wrote: > Author: arekm Date: Fri Apr 3 21:31:09 2009 GMT > Module: SPECS Tag: HEAD > ---- Log message: > - switch to configure + make style; static dropped; some non-dri stuff also dropped > +Source2: http://www.archlinux.org/~jgc/gl-manpages-1.0.1.tar.bz2 > +# Source2-md5: 6ae05158e678f4594343f32c2ca50515 What about conflict with OpenGL-doc-man package? It contains GL/GLU/GLX/GLw manuals up to OpenGL 1.2.1. gl-manpages-1.0.1 doesn't seem any more recent, misses at least GLw manuals and some GLX manuals... -- Jakub Bogusz http://qboosh.pl/ From arekm at maven.pl Sun Jan 10 21:26:13 2010 From: arekm at maven.pl (Arkadiusz Miskiewicz) Date: Sun, 10 Jan 2010 21:26:13 +0100 Subject: SPECS: Mesa.spec - switch to configure + make style; static dropped; some n... In-Reply-To: <20100110200753.GA6329@stranger.qboosh.pl> References: <20100110200753.GA6329@stranger.qboosh.pl> Message-ID: <201001102126.13713.arekm@maven.pl> On Sunday 10 of January 2010, Jakub Bogusz wrote: > On Fri, Apr 03, 2009 at 11:31:09PM +0200, arekm wrote: > > Author: arekm Date: Fri Apr 3 21:31:09 2009 GMT > > Module: SPECS Tag: HEAD > > ---- Log message: > > - switch to configure + make style; static dropped; some non-dri stuff > > also dropped > > > > +Source2: http://www.archlinux.org/~jgc/gl-manpages-1.0.1.tar.bz2 > > +# Source2-md5: 6ae05158e678f4594343f32c2ca50515 > > What about conflict with OpenGL-doc-man package? > It contains GL/GLU/GLX/GLw manuals up to OpenGL 1.2.1. > > gl-manpages-1.0.1 doesn't seem any more recent, misses at least GLw > manuals and some GLX manuals... In such case that part of commit can be reverted. -- Arkadiusz Mi?kiewicz PLD/Linux Team arekm / maven.pl http://ftp.pld-linux.org/ From sparky at pld-linux.org Sat Jan 16 18:13:47 2010 From: sparky at pld-linux.org (Przemyslaw Iskra) Date: Sat, 16 Jan 2010 18:13:47 +0100 Subject: packages: fbterm/fbterm-fonts-pl.patch (NEW) - added fonts-pl.patch (Set Po... In-Reply-To: References: Message-ID: <20100116171347.GA3961@pld-linux.org> On Sat, Jan 16, 2010 at 05:34:06PM +0100, witekfl wrote: > Author: witekfl Date: Sat Jan 16 16:34:06 2010 GMT > Module: packages Tag: HEAD > ---- Log message: > - added fonts-pl.patch (Set Polish as default fontconfig lang). > Without this letters such as ????, etc. were weird. You should be stoned for this patch. But I give you 1 day to fix it properly. That would be to create new option "font-lang" and implement it exactly the same way "font-names" is. It must default to "en". > +- FcPatternAddString(pat, FC_LANG, (FcChar8 *)"en"); > ++ FcPatternAddString(pat, FC_LANG, (FcChar8 *)"pl"); -- ____ Sparky{PI] -- Przemyslaw _ ___ _ _ ........... LANG...Pl..Ca..Es..En /____) ___ ___ _ _ || Iskra | | _ \| | | : WWW........ppcrcd.pld-linux.org \____\| -_)'___| ||^'||//\\// < | _/| | | : JID......sparkyjabberes.org (____/|| (_-_|_|| ||\\ || |_ |_| |_| _| : Mail....sparkypld-linux.org From glen at pld-linux.org Mon Jan 18 15:32:39 2010 From: glen at pld-linux.org (Elan =?utf-8?q?Ruusam=C3=A4e?=) Date: Mon, 18 Jan 2010 16:32:39 +0200 Subject: ac-ppc builder In-Reply-To: <201001121308.33605.glen@pld-linux.org> References: <200911162246.54242.glen@pld-linux.org> <4B01BFA4.1090408@gausus.net> <201001121308.33605.glen@pld-linux.org> Message-ID: <201001181632.40126.glen@pld-linux.org> hi ac-ppc builder has been down for a while, for keeping ac-updates alive there's need for new ppc builder. i've pinged current owner gasus several times without luck. so if you can host hardware (~10G diskspace + ssh account + sudo accesses for chroot) let us know! -- glen From glen at pld-linux.org Tue Jan 19 00:05:55 2010 From: glen at pld-linux.org (Elan =?utf-8?q?Ruusam=C3=A4e?=) Date: Tue, 19 Jan 2010 01:05:55 +0200 Subject: packages: wicd/wicd.spec - up to 1.7.0 - package netherland's manuals - spl... In-Reply-To: References: Message-ID: <201001190105.55553.glen@pld-linux.org> On Monday 18 January 2010 22:55:30 evil wrote: > - commented _libexecdir redefinition (but setup reworked, so it can be > uncommented and spec builds/works). not sure about that anyway it's because you did not actually comment it out: > -%define _libexecdir %{_prefix}/lib/%{name} > +#%define _libexecdir %{_prefix}/lib/%{name} this still redefines it. you need to avoid "%define" by using %% or removing %define i guess even in 2030 people won't understand that # is not a comment mark in rpm.spec -- glen From glen at pld-linux.org Tue Jan 19 16:19:29 2010 From: glen at pld-linux.org (Elan =?iso-8859-1?q?Ruusam=E4e?=) Date: Tue, 19 Jan 2010 17:19:29 +0200 Subject: packages: libmemcached/libmemcached.spec - 0.37 In-Reply-To: References: Message-ID: <201001191719.29207.glen@pld-linux.org> On Tuesday 19 January 2010 17:06:20 lisu wrote: > ?%files static > ?%defattr(644,root,root,755) > -%{_libdir}/lib*.a > +%{_libdir}/lib*.la *.la does not belong to -static! -- glen