According to Tim Brooks: > Thanks, for the info. But the basics of the spec file I've got down. I was > looking specifically into how to add the patch portion. > > I've tried putting the patch in the sources directory and changing the spec > with the appropriate lines. However, I'm unclear as to what the extension > should be. I've seen lines like -b extension. I'm not sure what this does. > Also I'm unclear where to put the Makefile.0? > > Patch0: ssl.9
Well, Joe suggested applying Makefile.0 before ssl.9, so I'd recommend the following two lines, after any "Source:" definitions in the .spec file: Patch0: Makefile.0 Patch1: ssl.9 > %patch0 -p1 -b The -b option is to specify an alternate extension for the backup files, while the -p option is the path level for path stripping in the patch file. So, for the two patch files above, you could use something like the following right after the %setup line in the %prep section... %patch0 -p0 -b .nodefs %patch1 -p1 -b .nossl -- Gilles R. Detillieux E-mail: <[EMAIL PROTECTED]> Spinal Cord Research Centre WWW: http://www.scrc.umanitoba.ca/ Dept. Physiology, U. of Manitoba Winnipeg, MB R3E 3J7 (Canada) ------------------------------------------------------- This sf.net email is sponsored by: OSDN - Tired of that same old cell phone? Get a new here for FREE! https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 _______________________________________________ htdig-general mailing list <[EMAIL PROTECTED]> To unsubscribe, send a message to <[EMAIL PROTECTED]> with a subject of unsubscribe FAQ: http://htdig.sourceforge.net/FAQ.html

