Randy McMurchy wrote:
> Dan Nicholson wrote these words on 02/09/07 18:33 CST:
>
>   
>> Something like:
>>
>> case `basename ${PWD}` in
>>    xload-[0-9]*) patch -Np1 -i ../xload-blah.patch ;;
>> esac
>>     
>
>
> Feel free to do whatever you feel can make it easier on everyone,
> while not holding hands (try and find a nice spot in the middle?)
>
>   
This may be a little too easy, it's similar to what my old script uses.

for f in $(find $PWD-*.patch 2>/dev/null); do
  patch -Np1 -i $f;
done

-- 
http://linuxfromscratch.org/mailman/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to