2002-06-06 19:36:28

by Sam Ravnborg

[permalink] [raw]
Subject: [PATCH] fixdep fails to use all components in config entry

Hi Kai.

fixdep, when adding dependencies to config entires fails to take into account
the last part of a config entry, if it contains more than one underscore.
Example:
CONFIG_PROC_FS generates
$(wildcard include/config/proc.h)
but should generate
$(wildcard include/config/proc/fs.h)

Attached patch fixes this.

Sam


Attachments:
(No filename) (320.00 B)
fixdep-fullpath.patch (300.00 B)
Download all attachments

2002-06-06 20:03:01

by Kai Germaschewski

[permalink] [raw]
Subject: Re: [PATCH] fixdep fails to use all components in config entry

On Thu, 6 Jun 2002, Sam Ravnborg wrote:

> fixdep, when adding dependencies to config entires fails to take into account
> the last part of a config entry, if it contains more than one underscore.

Doh, you're right. Applied ;-)

--Kai