|
From: Heiko Z. <he...@zu...> - 2008-03-12 13:07:33
|
>
>> Heiko Zuerker wrote:
>>
>>> Ususally it's best to create a if statement which checks for a
>>> .done_dl_patch file. If it's missing, patch and create it.
>>>
>>>
>> Surely! But this file is /usr/include/linux/if_fddi.h and I don't know
>> where the
>> best place to create a marker is.
>
> I'll take a look.
I changed the code this way:
if [ ! -e
/usr/include/linux/.done_dl_patch_iptraf-netdevice-fix
]; then
bzcat $DL_DIR/src/iptraf-netdevice-fix.diff.bz2
| patch -p0 || exit 1
touch
/usr/include/linux/.done_dl_patch_iptraf-netdevice-fix
fi
It's already in CVS.
--
Regards
Heiko Zuerker
http://www.devil-linux.org
|