... No doubts. I will have to recheck by myself in which cases the stale lock is being left. ... That code should take care of it, shouldn't it? (notice that...
Gustavo Niemeyer
niemeyer@...
Dec 1, 2002 2:28 pm
19500
... Someone will correct me if I'm wrong, but I'm pretty sure there's no way to do this (without editing the spec file). In the case of the kernel, it is...
Aaron Gaudio
prothonotar@...
Dec 1, 2002 7:53 pm
19501
... I originally thought it would just build by doing a -ba but I guess the --target i686-redhat-linux option prevents it. I have no problem editing the spec...
Tom Diehl
tdiehl@...
Dec 1, 2002 10:33 pm
19502
... If you're only interested in rebuilding a kernel for yourself, you can grab the pre-built kernel-source rpm and install it, then go to /usr/src/linux and...
Aaron Gaudio
prothonotar@...
Dec 2, 2002 11:25 pm
19503
Hi, I had a similar situation a while back, and with some help came up with a patch. I'm not sure it leaves the kernel-source tree in the exact same state as...
Dave Lehman
dlehman@...
Dec 2, 2002 11:56 pm
19504
Hi all, Is there any hints on how to tell what gets under %files? This is a major problem for me. Can you guys tell me how do you guys do it. Thanks ...
Jeffry Johar
linuxlah@...
Dec 3, 2002 4:48 am
19505
... One technique I often use when I have a sensible package (one that uses GNU make and supports DESTDIR) is to build the package normall and then run make...
Malcolm Tredinnick
malcolm@...
Dec 3, 2002 4:53 am
19506
... Wow. This is an incredibly fundamental part of building RPM packages---generally, if you're building an RPM package, you should know enough about what...
Jim Knoble
jmknoble@...
Dec 3, 2002 6:49 am
19507
Is it possible explicit specify file with '*' in the rpm spec (rpm 4.0.3) ? I try quoting: "/dirnamme/file*" Escape: /dirnamme/file\* Quoting and escape ...
Valery Reznic
valery_reznic@...
Dec 3, 2002 7:55 am
19508
--On Monday, December 02, 2002 11:53 PM -0800 Valery Reznic ... You mean a file with a literal asterisk in the name? Why would you do that?! ...
Kenneth Porter
shiva@...
Dec 3, 2002 8:20 am
19509
... Yes, I mind literal asterisk in the name. Some packages (exmh, guile) have file with asterisk. (But these packages doesn't specify file, but dir instead...
Valery Reznic
valery_reznic@...
Dec 3, 2002 8:32 am
19510
... At that point, I then massage the file list with a pipe: cd /tmp/foo find . | \ sort | \ sed \ -e 's!^\./usr!%{_prefix}!' \ -e 's!^\./etc!%{_sysconfdir}!'...
Paul Heinlein
heinlein@...
Dec 3, 2002 3:24 pm
19511
... I was pretty sure that files with an * in them were illegal, period. Are you *sure* that exmh and guile provide these files ? That would surprise me a lot....
Thomas Vander Stichele
thomas@...
Dec 4, 2002 10:36 am
19512
... There is a paragraph in the /usd/share/doc/rpm-4.0.3/spec about special shell characters in the file name and example, which shouw its (and *) usage. ... ...
Valery Reznic
valery_reznic@...
Dec 4, 2002 12:17 pm
19513
--On Wednesday, December 04, 2002 4:10 AM -0800 Valery Reznic ... Weird. I wonder why that is? I looked at the SRPM for exmh and it's that way in the original...
Kenneth Porter
shiva@...
Dec 4, 2002 12:47 pm
19514
... I have exmh-2.0.2-7 and guile-1.3-6 and neither file is present in my packages which were built in Spring 1999. KBK ...
Kurt B. Kaiser
kbk@...
Dec 4, 2002 1:44 pm
19515
... Nope. You can use just about any character except '/' in a filename. -- prothonotar at tarnation.dyndns.org "Every man is a mob, a chain gang of idiots." -...
Aaron Gaudio
prothonotar@...
Dec 4, 2002 1:45 pm
19516
... May be noone need this file, mau be somebody need it - it's up to exmh. Do you know what about filenames with '*' ? Valery ... ...
Valery Reznic
valery_reznic@...
Dec 4, 2002 2:04 pm
19517
--On Wednesday, December 04, 2002 8:37 AM -0500 "Kurt B. Kaiser" ... Probably somebody fat-fingered a shell command since then and introduced this aberration...
Kenneth Porter
shiva@...
Dec 4, 2002 2:15 pm
19518
... It's in exmh-2.4 and guile 1.3.4 Valery ... __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign...
Valery Reznic
valery_reznic@...
Dec 4, 2002 2:21 pm
19519
... Do you know how ? I can't get it working. Valery ... __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful....
Valery Reznic
valery_reznic@...
Dec 4, 2002 2:21 pm
19520
... I mean, in Unix you can use these characters (you can verify by executing touch 'foo*bar' [single quotes are important to avoid the shell evaluating the *...
Aaron Gaudio
prothonotar@...
Dec 4, 2002 2:51 pm
19521
... I can assure you that there isn't supposed to be a userlayout.tcl* in exmh. I'm looking at the exmh-2.5 RPM and also the current CVS tree and there is no ...
Chris Garrigues
cwg-rpm@...
Dec 4, 2002 3:11 pm
19522
--On Wednesday, December 04, 2002 9:10 AM -0600 Chris Garrigues ... proc User_Layout {} { global fdisp # This is called just after Exwin_Layout that creates...
Kenneth Porter
shiva@...
Dec 4, 2002 3:37 pm
19523
... My problem is not creating this files under Unix, but specifing them in the rpm Valery __________________________________________________ Do you Yahoo!? ...
Valery Reznic
valery_reznic@...
Dec 4, 2002 4:12 pm
19524
... This is from guile $ rpm -qi guile Name : guile Relocations: (not relocateable) Version : 1.3.4...
Troy Dawson
dawson@...
Dec 4, 2002 10:07 pm
19525
... hmmm, according to cvs there was never such a file. User_Layout is a hook with a stub defined in user.tcl. I think whoever created that RPM must have...
Chris Garrigues
cwg-rpm@...
Dec 4, 2002 10:49 pm
19526
... [...] ... [...] ... OK, this looks reasonable. let* is a Scheme special form which is used to define (recursive) local variables in a function. I would...
Kurt B. Kaiser
kbk@...
Dec 5, 2002 5:52 am
19527
--On Wednesday, December 04, 2002 4:48 PM -0600 Chris Garrigues ... I'm seeing the file in the tarball included in the RH8 SRPM. According to the spec file, it...
Kenneth Porter
shiva@...
Dec 5, 2002 1:27 pm
19528
... I don't know why RedHat is still shipping 2.4 since 2.5 has been out since 2001-07-24: http://sourceforge.net/project/showfiles.php?group_id=12885 I...